commit | f2d197b77a34c35bfe25de0c098a34068cc4d85c | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Thu Aug 19 19:04:40 2010 +0000 |
committer | Owen Anderson <resistor@mac.com> | Thu Aug 19 19:04:40 2010 +0000 |
tree | 118df53ac1758cf1420b8ff1486d315cc25673ad | |
parent | 5567bb0c5fed4f769d51970b73465c82fe903162 [diff] [blame] |
Tentatively enabled LVI by default. I'll be monitoring for any failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111543 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp index 2c3c39b..40250fa 100644 --- a/lib/Transforms/Scalar/JumpThreading.cpp +++ b/lib/Transforms/Scalar/JumpThreading.cpp
@@ -47,7 +47,7 @@ static cl::opt<bool> EnableLVI("enable-jump-threading-lvi", cl::desc("Use LVI for jump threading"), - cl::init(false), + cl::init(true), cl::ReallyHidden);