diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-06-23 21:22:35 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-06-23 21:22:35 +0000 |
commit | 2e9f0b1a323848f6d548c1e9eb16ece6a3881dbd (patch) | |
tree | e7c0784ab6a6faf1e98305ef7ff3c8f959f42ccf /lib/Transforms | |
parent | 8cb8245cf117fc4a4f0a6549d9a773a12895550c (diff) |
Disable PRE. It's breaking bootstrapping.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/GVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 9d9dcca247..5564dbde1b 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -43,7 +43,7 @@ STATISTIC(NumGVNLoad, "Number of loads deleted"); STATISTIC(NumGVNPRE, "Number of instructions PRE'd"); static cl::opt<bool> EnablePRE("enable-pre", - cl::init(true), cl::Hidden); + cl::init(false), cl::Hidden); //===----------------------------------------------------------------------===// // ValueTable Class |