mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Clean up a bit and fix for when SPAdj != 0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4c7628e43d
commit
5a0815fae8
@ -1150,7 +1150,6 @@ ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
|
||||
MachineInstr &MI = *II;
|
||||
MachineBasicBlock &MBB = *MI.getParent();
|
||||
MachineFunction &MF = *MBB.getParent();
|
||||
const MachineFrameInfo *MFI = MF.getFrameInfo();
|
||||
ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
|
||||
assert(!AFI->isThumb1OnlyFunction() &&
|
||||
"This eliminateFrameIndex does not support Thumb1!");
|
||||
@ -1161,12 +1160,12 @@ ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
|
||||
}
|
||||
|
||||
int FrameIndex = MI.getOperand(i).getIndex();
|
||||
int Offset = MFI->getObjectOffset(FrameIndex) + MFI->getStackSize() + SPAdj;
|
||||
unsigned FrameReg;
|
||||
|
||||
Offset = getFrameIndexReference(MF, FrameIndex, FrameReg);
|
||||
int Offset = getFrameIndexReference(MF, FrameIndex, FrameReg);
|
||||
if (FrameReg != ARM::SP)
|
||||
SPAdj = 0;
|
||||
Offset += SPAdj;
|
||||
|
||||
// Modify MI as necessary to handle as much of 'Offset' as possible
|
||||
bool Done = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user