mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
12 lines
440 B
Zig
12 lines
440 B
Zig
//! 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");
|
|
}
|