diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-27 18:57:41 -0400 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-04-07 13:09:10 +0200 |
| commit | 8fea9f68e8c7ea256d8137e3b311aafacef25e3a (patch) | |
| tree | 7b24498692ac19aa063db173c49dca92ea22cc8d /lib/std/start.zig | |
| parent | 36b9e56753dbb8f4a982ab012af420b0e63cf92d (diff) | |
| download | zig-8fea9f68e8c7ea256d8137e3b311aafacef25e3a.tar.gz zig-8fea9f68e8c7ea256d8137e3b311aafacef25e3a.zip | |
start: fix pc register syntax for m68k
Diffstat (limited to 'lib/std/start.zig')
| -rw-r--r-- | lib/std/start.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/start.zig b/lib/std/start.zig index 3757462be1..e91201a0bb 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -250,7 +250,7 @@ fn _start() callconv(.naked) noreturn { .csky => ".cfi_undefined lr", .hexagon => ".cfi_undefined r31", .loongarch32, .loongarch64 => ".cfi_undefined 1", - .m68k => ".cfi_undefined pc", + .m68k => ".cfi_undefined %%pc", .mips, .mipsel, .mips64, .mips64el => ".cfi_undefined $ra", .powerpc, .powerpcle, .powerpc64, .powerpc64le => ".cfi_undefined lr", .riscv32, .riscv64 => if (builtin.zig_backend == .stage2_riscv64) |
