authorgravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2023-08-13 03:20:51-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-19 09:37:32-07:00
log39f1d96a2fd6aee5bf38b596db5a642bbba3a82d
tree367a60b97ce74779be9d053247ebf7326dd58ee7
parent3506bc61b766528341ceaea27ae44b44227bf901

behavior: disable test that regressed with LLVM 17

Tracking issue #16797

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

test/behavior/bitcast.zig+7
...@@ -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; // TODO393 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;
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
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;