mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Register info alignment is in bits, frame object alignment is (currently) in
bytes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15970 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
98df506e71
commit
7008034c9f
@ -182,7 +182,7 @@ void PEI::calculateCallerSavedRegisters(MachineFunction &Fn) {
|
||||
if (FixedSlot == FixedSpillSlots+NumFixedSpillSlots) {
|
||||
// Nope, just spill it anywhere convenient.
|
||||
FrameIdx = FFI->CreateStackObject(RegInfo->getSpillSize(Reg),
|
||||
RegInfo->getSpillAlignment(Reg));
|
||||
RegInfo->getSpillAlignment(Reg)/8);
|
||||
} else {
|
||||
// Spill it to the stack where we must.
|
||||
FrameIdx = FFI->CreateFixedObject(RegInfo->getSpillSize(Reg),
|
||||
|
Loading…
x
Reference in New Issue
Block a user