summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccas
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-11-03 12:41:50 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-11-03 12:41:50 +0000
commita8ebc7af154ebcefad341e93275678222086c225 (patch)
tree6ee63c2a15d08afd52c1f6d0de06be506b9956ce /llvm/tools/gccas
parent320febba680dbbfbb1aba37a1dc9acfe19fad820 (diff)
downloadbcm5719-llvm-a8ebc7af154ebcefad341e93275678222086c225.tar.gz
bcm5719-llvm-a8ebc7af154ebcefad341e93275678222086c225.zip
Disable correlated expressions pass until it is reliable.
llvm-svn: 4512
Diffstat (limited to 'llvm/tools/gccas')
-rw-r--r--llvm/tools/gccas/gccas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp
index 31f7e6e813b..fb5ed091b46 100644
--- a/llvm/tools/gccas/gccas.cpp
+++ b/llvm/tools/gccas/gccas.cpp
@@ -76,7 +76,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
addPass(PM, createReassociatePass()); // Reassociate expressions
- addPass(PM, createCorrelatedExpressionEliminationPass());// Kill corr branches
+ //addPass(PM, createCorrelatedExpressionEliminationPass());// Kill corr branches
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
addPass(PM, createLICMPass()); // Hoist loop invariants
OpenPOWER on IntegriCloud