[llvm-commits] [llvm] r112723 - /llvm/trunk/include/llvm/Support/StandardPasses.h

Owen Anderson resistor at mac.com
Wed Sep 1 11:30:15 PDT 2010


Author: resistor
Date: Wed Sep  1 13:30:15 2010
New Revision: 112723

URL: http://llvm.org/viewvc/llvm-project?rev=112723&view=rev
Log:
Tentatively add correlated value propagation to the set of standard passes.

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=112723&r1=112722&r2=112723&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Wed Sep  1 13:30:15 2010
@@ -146,6 +146,7 @@
     // 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