mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Recover nestedloop regression reported by nightly tester.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51110 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
969c9d3b39
commit
8ffe2e2156
@ -280,6 +280,8 @@ void AddStandardCompilePasses(PassManager &PM) {
|
||||
addPass(PM, createLICMPass()); // Hoist loop invariants
|
||||
addPass(PM, createLoopUnswitchPass()); // Unswitch loops.
|
||||
addPass(PM, createLoopIndexSplitPass()); // Index split loops.
|
||||
// FIXME : Removing instcombine causes nestedloop regression.
|
||||
addPass(PM, createInstructionCombiningPass());
|
||||
addPass(PM, createIndVarSimplifyPass()); // Canonicalize indvars
|
||||
addPass(PM, createLoopDeletionPass()); // Delete dead loops
|
||||
addPass(PM, createLoopUnrollPass()); // Unroll small loops
|
||||
|
Loading…
x
Reference in New Issue
Block a user