aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-02 07:34:29 +0000
committerChris Lattner <sabre@nondot.org>2009-11-02 07:34:29 +0000
commitb7a7f013ee7f3634b2d05e9fa02203892a13ae8b (patch)
tree417a85b0532c85473855b3ff92433e3aaccfdb83 /include
parent12c8d5f5fe24c195b90264931479cc741cd1bb07 (diff)
downloadexternal_llvm-b7a7f013ee7f3634b2d05e9fa02203892a13ae8b.zip
external_llvm-b7a7f013ee7f3634b2d05e9fa02203892a13ae8b.tar.gz
external_llvm-b7a7f013ee7f3634b2d05e9fa02203892a13ae8b.tar.bz2
now that ip sccp *really* subsumes ipcp, remove ipcp again.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/StandardPasses.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h
index 86065a0..843f2ed 100644
--- a/include/llvm/Support/StandardPasses.h
+++ b/include/llvm/Support/StandardPasses.h
@@ -99,7 +99,6 @@ namespace llvm {
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
}