From f8d397fd98ef02094660b43af107cbeb95e2684e Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Mon, 21 Sep 2020 12:33:52 -0700 Subject: [PATCH] [machinst x64]: enable packed arithmetic spec tests This change should finish off the implementation of packed arithmetic in the new backend. --- build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.rs b/build.rs index 25a3f23e7b..8b11a3d175 100644 --- a/build.rs +++ b/build.rs @@ -183,8 +183,11 @@ fn experimental_x64_should_panic(testsuite: &str, testname: &str, strategy: &str ("simd", "simd_address") => return false, ("simd", "simd_const") => return false, ("simd", "simd_i8x16_arith") => return false, + ("simd", "simd_i8x16_arith2") => return false, ("simd", "simd_i16x8_arith") => return false, + ("simd", "simd_i16x8_arith2") => return false, ("simd", "simd_i32x4_arith") => return false, + ("simd", "simd_i32x4_arith2") => return false, ("simd", "simd_i64x2_arith") => return false, ("simd", "simd_f32x4_arith") => return false, ("simd", "simd_f32x4_cmp") => return false,