From: Wolfgang Bumiller Date: Sat, 28 Jul 2012 12:48:02 +0000 (+0200) Subject: Add -foverlap-locals - something we really should make possible X-Git-Tag: 0.1-rc1~366^2~8 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=ac26c2f2f26ae21fe77bdd7fef6f53eb2413d4ed Add -foverlap-locals - something we really should make possible --- 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) } };