mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Use a worklist to prevent the iterator from becoming invalidated because of the 'removeSuccessor' call. Noticed in a Release+Asserts+Check buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143018 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c38de2e9f
commit
de39d86f26
@ -5996,9 +5996,10 @@ EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const {
|
||||
|
||||
// Remove the landing pad successor from the invoke block and replace it
|
||||
// with the new dispatch block.
|
||||
for (MachineBasicBlock::succ_iterator
|
||||
SI = BB->succ_begin(), SE = BB->succ_end(); SI != SE; ++SI) {
|
||||
MachineBasicBlock *SMBB = *SI;
|
||||
SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
|
||||
BB->succ_end());
|
||||
while (!Successors.empty()) {
|
||||
MachineBasicBlock *SMBB = Successors.pop_back_val();
|
||||
if (SMBB->isLandingPad()) {
|
||||
BB->removeSuccessor(SMBB);
|
||||
MBBLPads.push_back(SMBB);
|
||||
|
Loading…
x
Reference in New Issue
Block a user