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

Daniel Dunbar daniel at zuster.org
Mon Nov 2 23:49:22 PST 2009


Author: ddunbar
Date: Tue Nov  3 01:49:22 2009
New Revision: 85884

URL: http://llvm.org/viewvc/llvm-project?rev=85884&view=rev
Log:
Speculatively redisable IPSCCP, I think its still breaking things.

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=85884&r1=85883&r2=85884&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Tue Nov  3 01:49:22 2009
@@ -99,7 +99,8 @@
     if (UnitAtATime) {
       PM->add(createGlobalOptimizerPass());     // Optimize out global vars
       
-      PM->add(createIPSCCPPass());              // IP SCCP
+      PM->add(createIPConstantPropagationPass());              // IP CP
+//      PM->add(createIPSCCPPass());              // IP SCCP
       PM->add(createDeadArgEliminationPass());  // Dead argument elimination
     }
     PM->add(createInstructionCombiningPass());  // Clean up after IPCP & DAE





More information about the llvm-commits mailing list