mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-19 10:39:34 +00:00
Don't allow the restore point to be placed after terminators. With this change,
MultiSource/Applications is clean with the prealloc splitter. Some failures remain in SPEC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59267 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
330169fa3e
commit
711fd3db2d
@ -233,13 +233,13 @@ PreAllocSplitting::findRestorePoint(MachineBasicBlock *MBB, MachineInstr *MI,
|
||||
unsigned &RestoreIndex) {
|
||||
// FIXME: Allow spill to be inserted to the beginning of the mbb. Update mbb
|
||||
// begin index accordingly.
|
||||
MachineBasicBlock::iterator Pt = MBB->end();
|
||||
MachineBasicBlock::iterator Pt = MBB->getFirstTerminator();
|
||||
unsigned EndIdx = LIs->getMBBEndIdx(MBB);
|
||||
|
||||
// Go bottom up if RefsInMBB is empty and the end of the mbb isn't beyond
|
||||
// the last index in the live range.
|
||||
if (RefsInMBB.empty() && LastIdx >= EndIdx) {
|
||||
MachineBasicBlock::iterator MII = MBB->end();
|
||||
MachineBasicBlock::iterator MII = MBB->getFirstTerminator();
|
||||
MachineBasicBlock::iterator EndPt = MI;
|
||||
--MII;
|
||||
do {
|
||||
|
Loading…
x
Reference in New Issue
Block a user