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

Unified Diff: src/IceClFlags.h

Issue 1234803007: Introduction of improved switch lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Safer check for 0 size type Created 5 years, 5 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 | « src/IceCfgNode.cpp ('k') | src/IceClFlags.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 549bf1693811a54044dbee7c80ccc6f7cfae9d19..97420eaa4c7ce870ef86eabde0a7d3215c13287a 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -103,6 +103,13 @@ public:
}
void setTimeEachFunction(bool NewValue) { TimeEachFunction = NewValue; }
+ bool getUseAdvancedSwitchLowering() const {
+ return UseAdvancedSwitchLowering;
+ }
+ void setUseAdvancedSwitchLowering(bool NewValue) {
+ UseAdvancedSwitchLowering = NewValue;
+ }
+
bool getUseSandboxing() const { return UseSandboxing; }
void setUseSandboxing(bool NewValue) { UseSandboxing = NewValue; }
@@ -235,6 +242,7 @@ private:
bool SkipUnimplemented;
bool SubzeroTimingEnabled;
bool TimeEachFunction;
+ bool UseAdvancedSwitchLowering;
bool UseSandboxing;
OptLevel Opt;
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698