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

Unified Diff: src/IceClFlags.h

Issue 631383003: Subzero: Fix emission of global initializers. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove the -disable-globals option 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
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index c434d50c91ead3265338bd9ce308962c9bcc8408..d1a71aeb11279f6253a0b93ca1c6d1ac3d362188 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -23,16 +23,14 @@ class ClFlags {
public:
ClFlags()
: DisableInternal(false), SubzeroTimingEnabled(false),
- DisableTranslation(false), DisableGlobals(false),
- FunctionSections(false), DataSections(false),
+ DisableTranslation(false), FunctionSections(false), DataSections(false),
UseIntegratedAssembler(false), UseSandboxing(false), DumpStats(false),
AllowUninitializedGlobals(false), TimeEachFunction(false),
- DefaultGlobalPrefix(""), DefaultFunctionPrefix(""),TimingFocusOn(""),
+ DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""),
VerboseFocusOn("") {}
bool DisableInternal;
bool SubzeroTimingEnabled;
bool DisableTranslation;
- bool DisableGlobals;
bool FunctionSections;
bool DataSections;
bool UseIntegratedAssembler;

Powered by Google App Engine
This is Rietveld 408576698