Disable loop deletion until the release branch.

llvm-svn: 50787
This commit is contained in:
Owen Anderson 2008-05-06 23:56:34 +00:00
parent 8f3d737dcd
commit 0d84582dc0
1 changed files with 0 additions and 1 deletions

View File

@ -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