From 868253a9c94d9907fae81e5e3108c7d10a85f5c3 Mon Sep 17 00:00:00 2001 From: Michael Dusan Date: Wed, 10 Mar 2021 02:40:42 -0500 Subject: [PATCH] re-enable behavior/vector test for aarch64 - issue fixed in llvmorg-12.0.0-rc3 closes #8130 --- test/stage1/behavior/vector.zig | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/stage1/behavior/vector.zig b/test/stage1/behavior/vector.zig index 9dbdf02348..eb505a9ae4 100644 --- a/test/stage1/behavior/vector.zig +++ b/test/stage1/behavior/vector.zig @@ -510,18 +510,9 @@ test "vector reduce operation" { const N = @typeInfo(@TypeOf(x)).Array.len; const TX = @typeInfo(@TypeOf(x)).Array.child; - // LLVM ERROR: Cannot select: intrinsic %llvm.aarch64.neon.fminnmv - // https://github.com/ziglang/zig/issues/8130 // wasmtime: unknown import: `env::fminf` has not been defined // https://github.com/ziglang/zig/issues/8131 switch (std.builtin.arch) { - .aarch64 => switch (TX) { - f16 => switch (op) { - .Min, .Max, => return, - else => {}, - }, - else => {}, - }, .wasm32 => switch (@typeInfo(TX)) { .Float => switch (op) { .Min, .Max, => return,