forked from OSchip/llvm-project
Disable loop deletion until the release branch.
llvm-svn: 50787
This commit is contained in:
parent
8f3d737dcd
commit
0d84582dc0
|
@ -282,7 +282,6 @@ void AddStandardCompilePasses(PassManager &PM) {
|
|||
addPass(PM, createLoopIndexSplitPass()); // Index split loops.
|
||||
addPass(PM, createInstructionCombiningPass()); // Clean up after LICM/reassoc
|
||||
addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
|
||||
addPass(PM, createLoopDeletionPass()); // Remove dead loops
|
||||
addPass(PM, createLoopUnrollPass()); // Unroll small loops
|
||||
addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
|
||||
addPass(PM, createGVNPass()); // Remove redundancies
|
||||
|
|
Loading…
Reference in New Issue