From ac26c2f2f26ae21fe77bdd7fef6f53eb2413d4ed Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Sat, 28 Jul 2012 14:48:02 +0200 Subject: [PATCH] Add -foverlap-locals - something we really should make possible --- gmqcc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gmqcc.h b/gmqcc.h index 4eebd20..5324a72 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -987,12 +987,14 @@ typedef struct { /*===================================================================*/ /* list of -f flags, like -fdarkplaces-string-table-bug */ enum { + OVERLAP_LOCALS, DP_STRING_TABLE_BUG, OMIT_NULLBYTES, NUM_F_FLAGS }; static const opt_flag_def opt_flag_list[] = { + { "overlap-locals", LONGBIT(OVERLAP_LOCALS) }, { "darkplaces-string-table-bug", LONGBIT(DP_STRING_TABLE_BUG) }, { "omit-nullbytes", LONGBIT(OMIT_NULLBYTES) } }; -- 2.39.2