Index: src/IceClFlags.h |
diff --git a/src/IceClFlags.h b/src/IceClFlags.h |
index d6c232f2ceef84660e205ad4e9482352294ae77a..5eacb595d294f5077aebe918d8ff5c75af344c41 100644 |
--- a/src/IceClFlags.h |
+++ b/src/IceClFlags.h |
@@ -24,17 +24,20 @@ public: |
ClFlags() |
: DisableInternal(false), SubzeroTimingEnabled(false), |
DisableTranslation(false), DisableGlobals(false), |
- FunctionSections(false), UseIntegratedAssembler(false), |
- UseSandboxing(false), DumpStats(false), DefaultGlobalPrefix(""), |
+ FunctionSections(false), DataSections(false), |
+ UseIntegratedAssembler(false), UseSandboxing(false), DumpStats(false), |
+ AllowUninitializedGlobals(false), DefaultGlobalPrefix(""), |
DefaultFunctionPrefix("") {} |
bool DisableInternal; |
bool SubzeroTimingEnabled; |
bool DisableTranslation; |
bool DisableGlobals; |
bool FunctionSections; |
+ bool DataSections; |
bool UseIntegratedAssembler; |
bool UseSandboxing; |
bool DumpStats; |
+ bool AllowUninitializedGlobals; |
IceString DefaultGlobalPrefix; |
IceString DefaultFunctionPrefix; |
}; |