From 2ac266926843bdbdbca57a03daa38258f1d9bee3 Mon Sep 17 00:00:00 2001 From: Epixu Date: Fri, 7 Feb 2025 16:48:42 +0200 Subject: [PATCH] Attempt to work around MSVC ICE --- test/Multiply/TestMul-VV.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/Multiply/TestMul-VV.cpp b/test/Multiply/TestMul-VV.cpp index 275dff2..4442747 100644 --- a/test/Multiply/TestMul-VV.cpp +++ b/test/Multiply/TestMul-VV.cpp @@ -33,13 +33,13 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" InitOne(y, -5); } - WHEN("Multiplied as constexpr (with saturation)") { + //WHEN("Multiplied as constexpr (with saturation)") { static_assert(SIMD::Multiply(T {0}, T {5}) == T {0}); - } + //} - WHEN("Multiplied as constexpr (without saturation)") { + //WHEN("Multiplied as constexpr (without saturation)") { static_assert(SIMD::Multiply(T {0}, T {5}) == T {0}); - } + //} WHEN("Multiplied (with saturation)") { ControlMul(x, y, rCheck); @@ -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); @@ -153,6 +153,6 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" SIMD::Multiply(y, x, r); REQUIRE(r == rCheck); - }*/ + } } }