commit 9e21e16f6da469189efe1ae55170f0a21dd3d72f (tree)
parent 1df4efc4bce53e0dbc3db041ecce5510aa7d683e
Author: Andrew Kelley <andrew@ziglang.org>
Date: Wed, 23 Aug 2023 13:23:27 -0700
re-enable passing behavior test
See #16797 - it was fixed in the most recent LLVM 17 release candidate.
Diffstat:
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/test/behavior/bitcast.zig b/test/behavior/bitcast.zig
@@ -393,13 +393,6 @@ test "bitcast vector to integer and back" {
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64 and
- comptime std.Target.x86.featureSetHas(builtin.cpu.features, .avx512f))
- {
- // https://github.com/ziglang/zig/issues/16797
- return error.SkipZigTest;
- }
-
const arr: [16]bool = [_]bool{ true, false } ++ [_]bool{true} ** 14;
var x: @Vector(16, bool) = @splat(true);
x[1] = false;