Completely remove mention of the correlated branch elimination pass. It has
authorChris Lattner <sabre@nondot.org>
Thu, 7 Aug 2003 21:30:12 +0000 (21:30 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 7 Aug 2003 21:30:12 +0000 (21:30 +0000)
bugs and needs to be reworked anyway.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7692 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index 70fe370740a8e835aa394ad02ba5077d6bfd16a7..77ff891bdcd6b8d8af6053c159de5ad2618ab931 100644 (file)
@@ -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