From 3c57c1b2bc93107fd446c880ba6e366892ddf3bf Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Tue, 2 Mar 2021 09:08:51 -0800 Subject: [PATCH] Enable simd_i64x2_cmp.wast for aarch64 As mentioned in https://github.com/bytecodealliance/wasmtime/pull/2697#discussion_r585168434, this commit enables the simd_i64x2_cmp.wast spec test on aarch64; I had mistakenly classified the test as only working on x64. --- build.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.rs b/build.rs index bd8758c4e2..5d7d836d83 100644 --- a/build.rs +++ b/build.rs @@ -250,11 +250,9 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool { | ("simd", "simd_store64_lane") | ("simd", "simd_store8_lane") => return true, - // These are only implemented on x64. - ("simd", "simd_i64x2_cmp") => return !cfg!(feature = "experimental_x64"), - // These are only implemented on aarch64 and x64. - ("simd", "simd_f32x4_pmin_pmax") + ("simd", "simd_i64x2_cmp") + | ("simd", "simd_f32x4_pmin_pmax") | ("simd", "simd_f64x2_pmin_pmax") | ("simd", "simd_f32x4_rounding") | ("simd", "simd_f64x2_rounding")