mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
behavior: disable test that triggers an llvm assertion
Tracked by #20680
This commit is contained in:
parent
16604a93b9
commit
40bab4df69
@ -105,6 +105,12 @@ test "vector float operators" {
|
||||
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
|
||||
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) {
|
||||
// Triggers an assertion with LLVM 18:
|
||||
// https://github.com/ziglang/zig/issues/20680
|
||||
return error.SkipZigTest;
|
||||
}
|
||||
|
||||
const S = struct {
|
||||
fn doTheTest(T: type) !void {
|
||||
var v: @Vector(4, T) = .{ 10, 20, 30, 40 };
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user