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

Unified Diff: src/IceClFlags.def

Issue 1997443002: Subzero: Initial implementation of BB Local CSE (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Initial Implementation Created 4 years, 7 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.def
diff --git a/src/IceClFlags.def b/src/IceClFlags.def
index e9d082277b7a369aea499e5b8d0214860c87c490..66bbc141be8ad52a0d9ccd504614354fad23e524 100644
--- a/src/IceClFlags.def
+++ b/src/IceClFlags.def
@@ -140,6 +140,10 @@ struct dev_list_flag {};
"information to stdout at the end of program execution."), \
cl::init(false)) \
\
+ X(SubzeroExperimentalOptsEnabled, bool, dev_opt_flag, "experimental-opts", \
Jim Stichnoth 2016/05/19 01:35:50 I think you can remove the "Subzero" prefix, becau
manasijm 2016/05/19 17:50:16 Done.
+ cl::desc("Enable Optimizations not yet part of O2"), \
+ cl::init(false)) \
+ \
X(EnablePhiEdgeSplit, bool, dev_opt_flag, "phi-edge-split", \
cl::desc("Enable edge splitting for Phi lowering"), cl::init(true)) \
\

Powered by Google App Engine
This is Rietveld 408576698