authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-08-23 13:23:27-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-19 09:37:53-07:00
log9e21e16f6da469189efe1ae55170f0a21dd3d72f
tree03df23bb266be939e2da2ae425e6b40ded0dba24
parent1df4efc4bce53e0dbc3db041ecce5510aa7d683e

re-enable passing behavior test

See #16797 - it was fixed in the most recent LLVM 17 release candidate.

1 files changed, 0 insertions(+), 7 deletions(-)

test/behavior/bitcast.zig-7
......@@ -393,13 +393,6 @@ test "bitcast vector to integer and back" {
393393 if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
394394 if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
395395
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
403396 const arr: [16]bool = [_]bool{ true, false } ++ [_]bool{true} ** 14;
404397 var x: @Vector(16, bool) = @splat(true);
405398 x[1] = false;