forked from OSchip/llvm-project
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:
parent
3581f8542d
commit
b8f72991a6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue