mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
1. fix null program output after some other changes
2. re-enable null.ll test 3. fix some minor style violations Patch by Reed Kotler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158935 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -112,7 +112,8 @@ void MipsFrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
|
||||
// First, compute final stack size.
|
||||
unsigned StackAlign = getStackAlignment();
|
||||
uint64_t StackSize = MFI->getObjectOffset(MipsFI->getGlobalRegFI()) +
|
||||
uint64_t StackSize = STI.inMips16Mode()? 0:
|
||||
MFI->getObjectOffset(MipsFI->getGlobalRegFI()) +
|
||||
StackAlign + RoundUpToAlignment(MFI->getStackSize(), StackAlign);
|
||||
|
||||
// Update stack size
|
||||
|
||||
Reference in New Issue
Block a user