summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-08-19 19:47:08 +0000
committerOwen Anderson <resistor@mac.com>2010-08-19 19:47:08 +0000
commit684d8d5b5003402241235917bfcf67d60f70c2c7 (patch)
treec25c0c79a9168cb2731e7f9112992a89657d3c69
parentf2d197b77a34c35bfe25de0c098a34068cc4d85c (diff)
downloadllvm-684d8d5b5003402241235917bfcf67d60f70c2c7.tar.gz
llvm-684d8d5b5003402241235917bfcf67d60f70c2c7.tar.bz2
llvm-684d8d5b5003402241235917bfcf67d60f70c2c7.tar.xz
Disable LVI while I evaluate a failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/JumpThreading.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp
index 40250fa12e..2c3c39b06b 100644
--- a/lib/Transforms/Scalar/JumpThreading.cpp
+++ b/lib/Transforms/Scalar/JumpThreading.cpp
@@ -47,7 +47,7 @@ Threshold("jump-threading-threshold",
static cl::opt<bool>
EnableLVI("enable-jump-threading-lvi",
cl::desc("Use LVI for jump threading"),
- cl::init(true),
+ cl::init(false),
cl::ReallyHidden);