Fix this code so that it doesn't try to iterate through a std::vector

while calling changeImmediateDominator, which removes elements from the
vector. This fixes PR5097.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83166 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-09-30 20:54:16 +00:00
parent 3a90c9b8ed
commit 5184635eda

View File

@ -274,9 +274,10 @@ ReprocessLoop:
DomTreeNode *Node = DT->getNode(ExitingBlock);
const std::vector<DomTreeNodeBase<BasicBlock> *> &Children =
Node->getChildren();
for (unsigned k = 0, g = Children.size(); k != g; ++k) {
DT->changeImmediateDominator(Children[k], Node->getIDom());
if (DF) DF->changeImmediateDominator(Children[k]->getBlock(),
while (!Children.empty()) {
DomTreeNode *Child = Children.front();
DT->changeImmediateDominator(Child, Node->getIDom());
if (DF) DF->changeImmediateDominator(Child->getBlock(),
Node->getIDom()->getBlock(),
DT);
}