]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Add -foverlap-locals - something we really should make possible
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Sat, 28 Jul 2012 12:48:02 +0000 (14:48 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Sat, 28 Jul 2012 12:48:02 +0000 (14:48 +0200)
gmqcc.h

diff --git a/gmqcc.h b/gmqcc.h
index 4eebd20b14b40d094966dfd38f5d7c03477fea83..5324a72e6925849b9817f8de8262a18f27b466ef 100644 (file)
--- 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)      }
 };