Commit c3c50ef6 authored by Owen Anderson's avatar Owen Anderson
Browse files

Remove CorrelatedValuePropagation from the default pass set for LLVM 2.8. It

has not yet received enough testing prior to this release.

llvm-svn: 113060
parent bf3d8795
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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