master
1//! CodeGen tests for the x86_64 backend.
2
3test {
4 const builtin = @import("builtin");
5 if (builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest;
6 // MachO linker does not support executables this big.
7 if (builtin.object_format == .macho) return error.SkipZigTest;
8 _ = @import("x86_64/access.zig");
9 _ = @import("x86_64/binary.zig");
10 _ = @import("x86_64/cast.zig");
11 _ = @import("x86_64/unary.zig");
12}