mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
Fix a bug in the code which re-inserts DBG_VALUE nodes after scheduling;
if a block is split (by a custom inserter), the insert point may be in a different block than it was originally. This fixes 32-bit llvm-gcc bootstrap builds, and I haven't been able to reproduce it otherwise. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108060 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e695de0c5f
commit
a8dab36f3d
@ -642,8 +642,10 @@ MachineBasicBlock *ScheduleDAGSDNodes::EmitSchedule() {
|
||||
// Insert to start of the BB (after PHIs).
|
||||
BB->insert(BBBegin, DbgMI);
|
||||
else {
|
||||
// Insert at the instruction, which may be in a different
|
||||
// block, if the block was split by a custom inserter.
|
||||
MachineBasicBlock::iterator Pos = MI;
|
||||
BB->insert(llvm::next(Pos), DbgMI);
|
||||
MI->getParent()->insert(llvm::next(Pos), DbgMI);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user