Completely remove mention of the correlated branch elimination pass. It has

bugs and needs to be reworked anyway.

llvm-svn: 7692
This commit is contained in:
Chris Lattner 2003-08-07 21:30:12 +00:00
parent 3581f8542d
commit b8f72991a6
1 changed files with 0 additions and 2 deletions

View 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