mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-29 06:53:53 +00:00
Fix reference to iterator invalidated by an erase operation. Uncovered
by _GLIBCXX_DEBUG. llvm-svn: 37796
This commit is contained in:
parent
df6a87ea1c
commit
c176772093
@ -564,11 +564,12 @@ Loop *LoopSimplify::SeparateNestedLoop(Loop *L) {
|
||||
|
||||
// Scan all of the loop children of L, moving them to OuterLoop if they are
|
||||
// not part of the inner loop.
|
||||
for (Loop::iterator I = L->begin(); I != L->end(); )
|
||||
if (BlocksInL.count((*I)->getHeader()))
|
||||
const std::vector<Loop*> &SubLoops = L->getSubLoops();
|
||||
for (size_t I = 0; I != SubLoops.size(); )
|
||||
if (BlocksInL.count(SubLoops[I]->getHeader()))
|
||||
++I; // Loop remains in L
|
||||
else
|
||||
NewOuter->addChildLoop(L->removeChildLoop(I));
|
||||
NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I));
|
||||
|
||||
// Now that we know which blocks are in L and which need to be moved to
|
||||
// OuterLoop, move any blocks that need it.
|
||||
|
Loading…
Reference in New Issue
Block a user