From 766ba3694dae5b3d2dfbb5c75c4ebf7069a7ce1f Mon Sep 17 00:00:00 2001 From: grischka Date: Sat, 1 Oct 2016 20:26:50 +0200 Subject: tccpp: cleanup - "utf8 in identifiers" from 936819a1b90f2618bb3f86730189cf2895948ba0 - CValue: remove member str.data_allocated - make tiny allocator private to tccpp - allocate macro_stack objects on heap because otherwise it could crash after error/setjmp in preprocess_delete():end_macro() - mov "TinyAlloc" defs to tccpp.c - define_push: take int* str again --- libtcc.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libtcc.c') diff --git a/libtcc.c b/libtcc.c index cb0d680..3a34954 100644 --- a/libtcc.c +++ b/libtcc.c @@ -2199,8 +2199,6 @@ PUB_FUNC int tcc_parse_args(TCCState *s, int argc, char **argv) s->dflag = 3; else if (*optarg == 'M') s->dflag = 7; - else if (*optarg == 'b') - s->dflag = 8; else goto unsupported_option; break; -- cgit v1.3.1