mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
x86_64: rewrite wrapping add/sub
This commit is contained in:
parent
6c3cbb0c87
commit
50b40c9621
3 changed files with 5188 additions and 206 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -3,6 +3,9 @@
|
|||
test {
|
||||
const builtin = @import("builtin");
|
||||
if (builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest;
|
||||
// MachO linker does not support executables this big.
|
||||
if (builtin.object_format == .macho) return error.SkipZigTest;
|
||||
// COFF linker does not support the new backend.
|
||||
if (builtin.object_format == .coff) return error.SkipZigTest;
|
||||
_ = @import("x86_64/math.zig");
|
||||
_ = @import("x86_64/mem.zig");
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue