[llvm-commits] [llvm] r112727 - /llvm/trunk/include/llvm/Support/StandardPasses.h
Owen Anderson
resistor at mac.com
Wed Sep 1 12:20:46 PDT 2010
Author: resistor
Date: Wed Sep 1 14:20:46 2010
New Revision: 112727
URL: http://llvm.org/viewvc/llvm-project?rev=112727&view=rev
Log:
Disable CorrelatedValuePropagation while I track down selfhost failures.
Modified:
llvm/trunk/include/llvm/Support/StandardPasses.h
Modified: llvm/trunk/include/llvm/Support/StandardPasses.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/StandardPasses.h?rev=112727&r1=112726&r2=112727&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Wed Sep 1 14:20:46 2010
@@ -146,7 +146,6 @@
// opened up by them.
PM->add(createInstructionCombiningPass());
PM->add(createJumpThreadingPass()); // Thread jumps
- PM->add(createCorrelatedValuePropagationPass());
PM->add(createDeadStoreEliminationPass()); // Delete dead stores
PM->add(createAggressiveDCEPass()); // Delete dead instructions
PM->add(createCFGSimplificationPass()); // Merge & remove BBs
More information about the llvm-commits
mailing list