diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-15 16:09:47 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-16 10:27:39 -0700 |
| commit | 15f45e89a751bd2d2dbbbf8d50138f91ce7bf754 (patch) | |
| tree | cd1dcdab00ea5ac543452a93cf6992d0df43b321 /lib/std/start.zig | |
| parent | de9c0e45800466e12d68c11f001cea447727fb5a (diff) | |
| download | zig-15f45e89a751bd2d2dbbbf8d50138f91ce7bf754.tar.gz zig-15f45e89a751bd2d2dbbbf8d50138f91ce7bf754.zip | |
remove condition codes
LLVM always assumes these are on. Zig backends do not observe them.
If Zig backends want to start using them, they can be introduced, one
arch at a time, with proper documentation.
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 9581675750..22ccda1e40 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -145,7 +145,7 @@ fn exit2(code: usize) noreturn { : : [number] "{x8}" (93), [arg1] "{x0}" (code), - : .{ .memory = true, .cc = true }); + : .{ .memory = true }); }, .sparc64 => { asm volatile ("ta 0x6d" |
