diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-04 03:02:01 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-04 03:02:01 +0000 |
commit | ba8c43afddf0e86a02c26d74a70038a4c8af0039 (patch) | |
tree | 2f029c93484ebe05862830ef5d58a24f9475da66 | |
parent | 43529dbe0c2769d9b6f09174841f52cb61f1b9fc (diff) |
Remove CorrelatedValuePropagation from the default pass set for LLVM 2.8. It
has not yet received enough testing prior to this release.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_28@113060 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/StandardPasses.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 1b40ede14b..bb3bddd3c7 100644 --- a/include/llvm/Support/StandardPasses.h +++ b/include/llvm/Support/StandardPasses.h @@ -122,7 +122,6 @@ namespace llvm { PM->add(createSimplifyLibCallsPass()); // Library Call Optimizations PM->add(createInstructionCombiningPass()); // Cleanup for scalarrepl. PM->add(createJumpThreadingPass()); // Thread jumps. - PM->add(createCorrelatedValuePropagationPass()); // Propagate conditionals PM->add(createCFGSimplificationPass()); // Merge & remove BBs PM->add(createInstructionCombiningPass()); // Combine silly seq's |