mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
Do not forget to save R15 when we allocate stack frame
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c94fdf76dd
commit
66f1b378bc
@ -149,7 +149,8 @@ SystemZRegisterInfo::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
||||
/* FIXME: function calls eh_return */)
|
||||
MF.getRegInfo().setPhysRegUsed(SystemZ::R14D);
|
||||
|
||||
if (FFI->getObjectIndexEnd() != 0 || // Contains automatic variables
|
||||
if (FFI->hasCalls() ||
|
||||
FFI->getObjectIndexEnd() != 0 || // Contains automatic variables
|
||||
FFI->hasVarSizedObjects() // Function calls dynamic alloca's
|
||||
/* FIXME: function is varargs */)
|
||||
MF.getRegInfo().setPhysRegUsed(SystemZ::R15D);
|
||||
|
Loading…
x
Reference in New Issue
Block a user