mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Fix iterator invalidation problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5895 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -201,8 +201,13 @@ bool PromoteMem2Reg::QueuePhiNode(BasicBlock *BB, unsigned AllocaNo) {
|
|||||||
// because it is an unreachable predecessor), that all PHI nodes will have the
|
// because it is an unreachable predecessor), that all PHI nodes will have the
|
||||||
// correct number of entries for their predecessors.
|
// correct number of entries for their predecessors.
|
||||||
Value *NullVal = Constant::getNullValue(PN->getType());
|
Value *NullVal = Constant::getNullValue(PN->getType());
|
||||||
for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI)
|
|
||||||
PN->addIncoming(NullVal, *PI);
|
// This is neccesary because adding incoming values to the PHI node adds uses
|
||||||
|
// to the basic blocks being used, which can invalidate the predecessor
|
||||||
|
// iterator!
|
||||||
|
std::vector<BasicBlock*> Preds(pred_begin(BB), pred_end(BB));
|
||||||
|
for (unsigned i = 0, e = Preds.size(); i != e; ++i)
|
||||||
|
PN->addIncoming(NullVal, Preds[i]);
|
||||||
|
|
||||||
BBPNs[AllocaNo] = PN;
|
BBPNs[AllocaNo] = PN;
|
||||||
PhiNodes[AllocaNo].push_back(BB);
|
PhiNodes[AllocaNo].push_back(BB);
|
||||||
|
Reference in New Issue
Block a user