| ... | ... | @@ -250,6 +250,13 @@ test "vector @splat" { |
| 250 | 250 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO |
| 251 | 251 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 252 | 252 | |
| 253 | if (builtin.zig_backend == .stage2_llvm and |
| 254 | builtin.os.tag == .macos) |
| 255 | { |
| 256 | // LLVM 15 regression: https://github.com/ziglang/zig/issues/12827 |
| 257 | return error.SkipZigTest; |
| 258 | } |
| 259 | |
| 253 | 260 | const S = struct { |
| 254 | 261 | fn testForT(comptime N: comptime_int, v: anytype) !void { |
| 255 | 262 | const T = @TypeOf(v); |