summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-09-04 03:02:01 +0000
committerOwen Anderson <resistor@mac.com>2010-09-04 03:02:01 +0000
commitc3c50ef6b8ccd7b68c1c64186bd64503ebaa591a (patch)
tree066da2ab674c5e72ccba61cdb8f0d1f53223c389
parentbf3d8795f2551449034722af7a8214a33580db29 (diff)
downloadllvm-c3c50ef6b8ccd7b68c1c64186bd64503ebaa591a.tar.gz
Remove CorrelatedValuePropagation from the default pass set for LLVM 2.8. Itllvmorg-2.8.0-rc0
has not yet received enough testing prior to this release. llvm-svn: 113060
-rw-r--r--llvm/include/llvm/Support/StandardPasses.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/StandardPasses.h b/llvm/include/llvm/Support/StandardPasses.h
index 1b40ede14b84..bb3bddd3c799 100644
--- a/llvm/include/llvm/Support/StandardPasses.h
+++ b/llvm/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