[llvm-commits] [llvm] r85735 - /llvm/trunk/include/llvm/Support/StandardPasses.h
Chris Lattner
sabre at nondot.org
Sun Nov 1 11:29:12 PST 2009
Author: lattner
Date: Sun Nov 1 13:29:12 2009
New Revision: 85735
URL: http://llvm.org/viewvc/llvm-project?rev=85735&view=rev
Log:
IPSCCP apparently is not a superset of IPCP, this is bad,
but I'll investigate it separately. This unbreaks
test/FrontendC/weak_constant.c
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=85735&r1=85734&r2=85735&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Sun Nov 1 13:29:12 2009
@@ -100,6 +100,7 @@
if (UnitAtATime) {
PM->add(createGlobalOptimizerPass()); // Optimize out global vars
+ PM->add(createIPConstantPropagationPass()); // IP CP
PM->add(createIPSCCPPass()); // IP SCCP
PM->add(createDeadArgEliminationPass()); // Dead argument elimination
}
More information about the llvm-commits
mailing list