diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-07 21:30:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-07 21:30:12 +0000 |
commit | 23d5724c610803fb090032c35befcb34bca81f06 (patch) | |
tree | a1675557e88230577b1d7175ad211fec4e5b92c2 | |
parent | 3d1b0c73319ec1d01ec927ead03a09bbc62c7aea (diff) |
Completely remove mention of the correlated branch elimination pass. It has
bugs and needs to be reworked anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7692 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/gccas/gccas.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 70fe370740..77ff891bdc 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -75,8 +75,6 @@ void AddConfiguredTransformationPasses(PassManager &PM) { addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs addPass(PM, createIndVarSimplifyPass()); // Simplify indvars addPass(PM, createReassociatePass()); // Reassociate expressions - // Kill corr branches - //addPass(PM, createCorrelatedExpressionEliminationPass()); addPass(PM, createInstructionCombiningPass()); // Combine silly seq's addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs addPass(PM, createLICMPass()); // Hoist loop invariants |