mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Include RegSaveAreaSize in the computation of stack size.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143993 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
213b2a2188
commit
f83ba3293f
@ -157,6 +157,7 @@ void MipsFrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
(MFI->getObjectOffset(MipsFI->getGPFI()) + RegSize) :
|
||||
MipsFI->getMaxCallFrameSize();
|
||||
unsigned StackSize = AlignOffset(LocalVarAreaOffset, StackAlign) +
|
||||
AlignOffset(MipsFI->getRegSaveAreaSize(), StackAlign) +
|
||||
AlignOffset(MFI->getStackSize(), StackAlign);
|
||||
|
||||
// Update stack size
|
||||
|
Loading…
Reference in New Issue
Block a user