From 57b36765cb01db43626804677bbf36be5c0c611e Mon Sep 17 00:00:00 2001 From: Epixu Date: Fri, 7 Feb 2025 15:32:52 +0200 Subject: [PATCH] Attempt to work around MSVC ICE --- test/Multiply/TestMul-VV.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Multiply/TestMul-VV.cpp b/test/Multiply/TestMul-VV.cpp index a3d792e..0fe5f49 100644 --- a/test/Multiply/TestMul-VV.cpp +++ b/test/Multiply/TestMul-VV.cpp @@ -91,7 +91,7 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" #endif }*/ - WHEN("Multiplied (without saturation)") { + /*WHEN("Multiplied (without saturation)") { ControlMul(x, y, rCheck); SIMD::Multiply(x, y, r); @@ -139,9 +139,9 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" }); }; #endif - } + }*/ - /*WHEN("Multiplied in reverse (with saturation)") { + WHEN("Multiplied in reverse (with saturation)") { ControlMul(y, x, rCheck); SIMD::Multiply(y, x, r); @@ -153,6 +153,6 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" SIMD::Multiply(y, x, r); REQUIRE(r == rCheck); - }*/ + } } }