forked from OSchip/llvm-project
parent
c4235e5521
commit
901d9e65f6
|
@ -206,9 +206,11 @@ void ARMRegisterInfo::emitPrologue(MachineFunction &MF) const {
|
||||||
|
|
||||||
MFI->setStackSize(NumBytes);
|
MFI->setStackSize(NumBytes);
|
||||||
|
|
||||||
//sub sp, sp, #NumBytes
|
if (NumBytes) {
|
||||||
splitInstructionWithImmediate(MBB, MBBI, TII.get(ARM::SUB), ARM::R13,
|
//sub sp, sp, #NumBytes
|
||||||
ARM::R13, NumBytes);
|
splitInstructionWithImmediate(MBB, MBBI, TII.get(ARM::SUB), ARM::R13,
|
||||||
|
ARM::R13, NumBytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (HasFP) {
|
if (HasFP) {
|
||||||
|
@ -234,9 +236,11 @@ void ARMRegisterInfo::emitEpilogue(MachineFunction &MF,
|
||||||
BuildMI(MBB, MBBI, TII.get(ARM::LDR), ARM::R11).addReg(ARM::R13).addImm(0);
|
BuildMI(MBB, MBBI, TII.get(ARM::LDR), ARM::R11).addReg(ARM::R13).addImm(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
//add sp, sp, #NumBytes
|
if (NumBytes){
|
||||||
splitInstructionWithImmediate(MBB, MBBI, TII.get(ARM::ADD), ARM::R13,
|
//add sp, sp, #NumBytes
|
||||||
ARM::R13, NumBytes);
|
splitInstructionWithImmediate(MBB, MBBI, TII.get(ARM::ADD), ARM::R13,
|
||||||
|
ARM::R13, NumBytes);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
; RUN: llvm-upgrade < %s | llvm-as | llc -f -march=arm -o %t.s &&
|
||||||
|
; RUN: not grep "add r13, r13, #0" < %t.s &&
|
||||||
|
; RUN: not grep "sub r13, r13, #0" < %t.s
|
||||||
|
|
||||||
|
int %f() {
|
||||||
|
entry:
|
||||||
|
ret int 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue