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

Unified Diff: src/llvm2ice.cpp

Issue 560773002: Subzero: Fix Phi lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 3 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/llvm2ice.cpp
diff --git a/src/llvm2ice.cpp b/src/llvm2ice.cpp
index e704ed3f33b11177d9fe408c5a6e4cd99f3dfbd1..5c872ce4002dd5b6b3db40ac6e079f6ddbcd9b2f 100644
--- a/src/llvm2ice.cpp
+++ b/src/llvm2ice.cpp
@@ -97,6 +97,11 @@ static cl::opt<bool>
DisableGlobals("disable-globals",
cl::desc("Disable global initializer translation"));
+// This is currently unused, and is a placeholder for lit tests.
+static cl::opt<bool> DisablePhiEdgeSplit(
+ "no-phi-edge-split",
+ cl::desc("Disable edge splitting for Phi lowering"));
+
static cl::opt<NaClFileFormat> InputFileFormat(
"bitcode-format", cl::desc("Define format of input file:"),
cl::values(clEnumValN(LLVMFormat, "llvm", "LLVM file (default)"),

Powered by Google App Engine
This is Rietveld 408576698