Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: src/IceClFlags.h

Issue 624663002: Introduce model of global initializers in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pydir/crosstest.py ('k') | src/IceConverter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « pydir/crosstest.py ('k') | src/IceConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698