mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
[AArch64] Strengthen the code for the prologue insertion.
The spilled registers are pristine and thus, correctly handled by the register scavenger and so on, but the liveness information is strictly speaking wrong at this point. Fix that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c127686d0e
commit
b26cf11a7b
@ -787,6 +787,8 @@ bool AArch64FrameLowering::spillCalleeSavedRegisters(
|
||||
if (StrOpc == AArch64::STPDpre || StrOpc == AArch64::STPXpre)
|
||||
MIB.addReg(AArch64::SP, RegState::Define);
|
||||
|
||||
MBB.addLiveIn(Reg1);
|
||||
MBB.addLiveIn(Reg2);
|
||||
MIB.addReg(Reg2, getPrologueDeath(MF, Reg2))
|
||||
.addReg(Reg1, getPrologueDeath(MF, Reg1))
|
||||
.addReg(AArch64::SP)
|
||||
|
Loading…
x
Reference in New Issue
Block a user