| ... | @@ -393,6 +393,13 @@ test "bitcast vector to integer and back" { | ... | @@ -393,6 +393,13 @@ test "bitcast vector to integer and back" { |
| 393 | if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO | 393 | if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO |
| 394 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; | 394 | if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; |
| 395 | | 395 | |
| | 396 | if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64 and |
| | 397 | comptime std.Target.x86.featureSetHas(builtin.cpu.features, .avx512f)) |
| | 398 | { |
| | 399 | // https://github.com/ziglang/zig/issues/16797 |
| | 400 | return error.SkipZigTest; |
| | 401 | } |
| | 402 | |
| 396 | const arr: [16]bool = [_]bool{ true, false } ++ [_]bool{true} ** 14; | 403 | const arr: [16]bool = [_]bool{ true, false } ++ [_]bool{true} ** 14; |
| 397 | var x: @Vector(16, bool) = @splat(true); | 404 | var x: @Vector(16, bool) = @splat(true); |
| 398 | x[1] = false; | 405 | x[1] = false; |