mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Specifically this is to make sure llvm data layout generation doesn't regress. The no emit bin is to allow testing targets that can't currently be linked. The commented out targets are ones that fail in the linker anyway when no emit bin is passed.
9 lines
308 B
Zig
9 lines
308 B
Zig
const std = @import("std");
|
|
const Cases = @import("src/Cases.zig");
|
|
|
|
pub fn addCases(cases: *Cases) !void {
|
|
try @import("compile_errors.zig").addCases(cases);
|
|
try @import("cbe.zig").addCases(cases);
|
|
try @import("llvm_targets.zig").addCases(cases);
|
|
try @import("nvptx.zig").addCases(cases);
|
|
}
|