authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-25 00:55:36+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-25 00:55:36+02:00
logebefee608810d947fb9a17e853acd30dc619cb88
tree3f8991c7d70a48b2a3bc80fb23d88056f8a3ff6f
parent5478b0eb3821df4fcdbcb221441e732576be7d68
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

start: Fix mips stack alignment value (should be 8, not 16).


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/start.zig+1-1
...@@ -332,7 +332,7 @@ fn _start() callconv(.Naked) noreturn {...@@ -332,7 +332,7 @@ fn _start() callconv(.Naked) noreturn {
332 \\ move $fp, $0332 \\ move $fp, $0
333 \\ move $ra, $0333 \\ move $ra, $0
334 \\ move $a0, $sp334 \\ move $a0, $sp
335 \\ and $sp, -16335 \\ and $sp, -8
336 \\ j %[posixCallMainAndExit]336 \\ j %[posixCallMainAndExit]
337 ,337 ,
338 .mips64, .mips64el =>338 .mips64, .mips64el =>