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

Unified Diff: src/IceClFlags.h

Issue 678533005: Subzero: Add basic ELFObjectWriter (text section, symtab, strtab, headers) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: minor cleanup Created 6 years 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 | « src/IceCfg.cpp ('k') | src/IceDefs.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 a1dcf68f8eefcecc3a5f77084b0c75c0b1a029b2..68255fba9366c2db4a1ec60d4dec8346b1e47b24 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -23,17 +23,18 @@ public:
ClFlags()
: DisableInternal(false), SubzeroTimingEnabled(false),
DisableTranslation(false), FunctionSections(false), DataSections(false),
- UseIntegratedAssembler(false), UseSandboxing(false),
- PhiEdgeSplit(false), DecorateAsm(false), DumpStats(false),
- AllowUninitializedGlobals(false), TimeEachFunction(false),
- DisableIRGeneration(false), DefaultGlobalPrefix(""),
- DefaultFunctionPrefix(""), TimingFocusOn(""), VerboseFocusOn(""),
- TranslateOnly("") {}
+ UseELFWriter(false), UseIntegratedAssembler(false),
+ UseSandboxing(false), PhiEdgeSplit(false), DecorateAsm(false),
+ DumpStats(false), AllowUninitializedGlobals(false),
+ TimeEachFunction(false), DisableIRGeneration(false),
+ DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""),
+ VerboseFocusOn(""), TranslateOnly("") {}
bool DisableInternal;
bool SubzeroTimingEnabled;
bool DisableTranslation;
bool FunctionSections;
bool DataSections;
+ bool UseELFWriter;
bool UseIntegratedAssembler;
bool UseSandboxing;
bool PhiEdgeSplit;
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceDefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698