mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
When testing whether one loop contains another, test this directly
rather than testing whether the loop contains the other's header. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111039 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f1fb42b7e
commit
9cba97886c
@ -2047,9 +2047,9 @@ ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
|
||||
// Canonicalize nested AddRecs in by nesting them in order of loop depth.
|
||||
if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) {
|
||||
const Loop *NestedLoop = NestedAR->getLoop();
|
||||
if (L->contains(NestedLoop->getHeader()) ?
|
||||
if (L->contains(NestedLoop) ?
|
||||
(L->getLoopDepth() < NestedLoop->getLoopDepth()) :
|
||||
(!NestedLoop->contains(L->getHeader()) &&
|
||||
(!NestedLoop->contains(L) &&
|
||||
DT->dominates(L->getHeader(), NestedLoop->getHeader()))) {
|
||||
SmallVector<const SCEV *, 4> NestedOperands(NestedAR->op_begin(),
|
||||
NestedAR->op_end());
|
||||
|
Loading…
x
Reference in New Issue
Block a user