x86_64: rewrite wrapping add/sub

This commit is contained in:
Jacob Young 2025-02-24 04:29:05 -05:00
parent 6c3cbb0c87
commit 50b40c9621
3 changed files with 5188 additions and 206 deletions

File diff suppressed because it is too large Load diff

View file

@ -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