diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-11-03 12:41:50 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-11-03 12:41:50 +0000 |
commit | 02a74ccd613edabc2d3468c38f270f5962fec4a4 (patch) | |
tree | 42b4c12b455fb621258e4939cbd50252c30dc0d5 | |
parent | 93d545e691ef8c7c802a0c83dfb046e81d38e5d8 (diff) | |
download | external_llvm-02a74ccd613edabc2d3468c38f270f5962fec4a4.zip external_llvm-02a74ccd613edabc2d3468c38f270f5962fec4a4.tar.gz external_llvm-02a74ccd613edabc2d3468c38f270f5962fec4a4.tar.bz2 |
Disable correlated expressions pass until it is reliable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4512 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/gccas/gccas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 31f7e6e..fb5ed09 100644 --- a/tools/gccas/gccas.cpp +++ b/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 |