aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-03 03:42:51 +0000
committerChris Lattner <sabre@nondot.org>2009-11-03 03:42:51 +0000
commit14532d03a17c83830e8ee765bf69bbf7198479dc (patch)
tree196db9eaa96b2be15db6e400542d1c5928bcdf17 /include
parent8e46141e9ea48dcaee5b0d1e7a08f119bc1f3a58 (diff)
downloadexternal_llvm-14532d03a17c83830e8ee765bf69bbf7198479dc.zip
external_llvm-14532d03a17c83830e8ee765bf69bbf7198479dc.tar.gz
external_llvm-14532d03a17c83830e8ee765bf69bbf7198479dc.tar.bz2
turn IPSCCP back on now that the iterator invalidation bug is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85858 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
}