mirror of
https://github.com/ziglang/zig.git
synced 2026-01-03 12:03:19 +00:00
10 lines
302 B
Zig
10 lines
302 B
Zig
//! CodeGen tests for the x86_64 backend.
|
|
|
|
test {
|
|
const builtin = @import("builtin");
|
|
if (builtin.zig_backend != .stage2_x86_64) return error.SkipZigTest;
|
|
if (builtin.object_format == .coff) return error.SkipZigTest;
|
|
_ = @import("x86_64/math.zig");
|
|
_ = @import("x86_64/mem.zig");
|
|
}
|