mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 23:29:03 +00:00
parent
f79824f946
commit
01e89fec71
1 changed files with 7 additions and 0 deletions
|
|
@ -250,6 +250,13 @@ test "vector @splat" {
|
||||||
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
|
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
|
||||||
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
|
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
|
||||||
|
|
||||||
|
if (builtin.zig_backend == .stage2_llvm and
|
||||||
|
builtin.os.tag == .macos)
|
||||||
|
{
|
||||||
|
// LLVM 15 regression: https://github.com/ziglang/zig/issues/12827
|
||||||
|
return error.SkipZigTest;
|
||||||
|
}
|
||||||
|
|
||||||
const S = struct {
|
const S = struct {
|
||||||
fn testForT(comptime N: comptime_int, v: anytype) !void {
|
fn testForT(comptime N: comptime_int, v: anytype) !void {
|
||||||
const T = @TypeOf(v);
|
const T = @TypeOf(v);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue