mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
misched: obvious iterator update fixes for bottom-up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0b0d899f91
commit
1ce062fe56
@ -369,8 +369,12 @@ void ScheduleDAGMI::releasePredecessors(SUnit *SU) {
|
||||
|
||||
void ScheduleDAGMI::moveInstruction(MachineInstr *MI,
|
||||
MachineBasicBlock::iterator InsertPos) {
|
||||
// Fix RegionBegin if the first instruction moves down.
|
||||
if (&*RegionBegin == MI)
|
||||
RegionBegin = llvm::next(RegionBegin);
|
||||
BB->splice(InsertPos, BB, MI);
|
||||
LIS->handleMove(MI);
|
||||
// Fix RegionBegin if another instruction moves above the first instruction.
|
||||
if (RegionBegin == InsertPos)
|
||||
RegionBegin = MI;
|
||||
}
|
||||
@ -440,6 +444,8 @@ void ScheduleDAGMI::schedule() {
|
||||
if (&*llvm::prior(CurrentBottom) == MI)
|
||||
--CurrentBottom;
|
||||
else {
|
||||
if (&*CurrentTop == MI)
|
||||
CurrentTop = llvm::next(CurrentTop);
|
||||
moveInstruction(MI, CurrentBottom);
|
||||
CurrentBottom = MI;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user