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

Unified Diff: src/IceClFlags.h

Issue 2177033002: Subzero: Local variable splitting. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes, mostly renaming. Created 4 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.h ('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 8c43471b9096e4cf029223ed34d7f691ccba9cc6..a1018e5206aea6412d6c01c374bef660c7f037f6 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -168,6 +168,9 @@ public:
bool matchForceO2(GlobalString Name, uint32_t Number) const {
return ForceO2.match(Name, Number);
}
+ bool matchSplitInsts(const std::string &Name, uint32_t Number) const {
+ return SplitInsts.match(Name, Number);
+ }
bool matchTestStatus(GlobalString Name, uint32_t Number) const {
return TestStatus.match(Name, Number);
}
@@ -191,6 +194,7 @@ private:
bool GenerateUnitTestMessages;
RangeSpec ForceO2;
+ RangeSpec SplitInsts;
RangeSpec TestStatus;
RangeSpec TimingFocus;
RangeSpec TranslateOnly;
« no previous file with comments | « src/IceCfgNode.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698