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

Unified Diff: src/IceClFlags.h

Issue 1017373002: Subzero: Assemble calls to constant addresses. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: move test back Created 5 years, 9 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 | « no previous file | src/IceELFObjectWriter.cpp » ('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 3ddbbf8195b66fde39b05bbc21ab6ef37a1af449..6fcbbbb9b5cac706191f594f8df8c0b3b4ee49a1 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -30,8 +30,8 @@ public:
DecorateAsm(false), DisableInternal(false), DisableIRGeneration(false),
DisableTranslation(false), DumpStats(false), FunctionSections(false),
GenerateUnitTestMessages(false), PhiEdgeSplit(false),
- StubConstantCalls(false), SubzeroTimingEnabled(false),
- TimeEachFunction(false), UseSandboxing(false),
+ SubzeroTimingEnabled(false), TimeEachFunction(false),
+ UseSandboxing(false),
// FileType field
OutFileType(FT_Iasm),
// IceString fields.
@@ -87,11 +87,6 @@ public:
bool getPhiEdgeSplit() const { return PhiEdgeSplit; }
void setPhiEdgeSplit(bool NewValue) { PhiEdgeSplit = NewValue; }
- bool getStubConstantCalls() const {
- return !ALLOW_MINIMAL_BUILD && StubConstantCalls;
- }
- void setStubConstantCalls(bool NewValue) { StubConstantCalls = NewValue; }
-
bool getSubzeroTimingEnabled() const { return SubzeroTimingEnabled; }
void setSubzeroTimingEnabled(bool NewValue) {
SubzeroTimingEnabled = NewValue;
@@ -154,7 +149,6 @@ private:
bool FunctionSections;
bool GenerateUnitTestMessages;
bool PhiEdgeSplit;
- bool StubConstantCalls;
bool SubzeroTimingEnabled;
bool TimeEachFunction;
bool UseSandboxing;
« no previous file with comments | « no previous file | src/IceELFObjectWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698