commit ebefee608810d947fb9a17e853acd30dc619cb88 (tree)
parent 5478b0eb3821df4fcdbcb221441e732576be7d68
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Thu, 25 Jul 2024 00:55:36 +0200
start: Fix mips stack alignment value (should be 8, not 16).
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/start.zig b/lib/std/start.zig
@@ -332,7 +332,7 @@ fn _start() callconv(.Naked) noreturn {
\\ move $fp, $0
\\ move $ra, $0
\\ move $a0, $sp
- \\ and $sp, -16
+ \\ and $sp, -8
\\ j %[posixCallMainAndExit]
,
.mips64, .mips64el =>