blob: 689b084858d6a4ab2748ea015c2d2a7c6675f06d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//! CodeGen tests for the x86_64 backend.
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;
_ = @import("x86_64/access.zig");
_ = @import("x86_64/binary.zig");
_ = @import("x86_64/cast.zig");
_ = @import("x86_64/unary.zig");
}
|