mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
fix off by 16
This commit is contained in:
parent
0f77a24a2d
commit
857c48c933
1 changed files with 1 additions and 1 deletions
|
@ -548,7 +548,7 @@ impl CallConv<AArch64GeneralReg, AArch64FloatReg, AArch64Assembler> for AArch64C
|
|||
let mut state = AArch64CallStoreArgs {
|
||||
general_i: 0,
|
||||
float_i: 0,
|
||||
tmp_stack_offset: Self::SHADOW_SPACE_SIZE as i32,
|
||||
tmp_stack_offset: Self::SHADOW_SPACE_SIZE as i32 + 16,
|
||||
};
|
||||
|
||||
for (sym, in_layout) in args.iter().zip(arg_layouts.iter()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue