diff --git a/test/test_complex_power.cpp b/test/test_complex_power.cpp index d44566f33..6d2f39de3 100644 --- a/test/test_complex_power.cpp +++ b/test/test_complex_power.cpp @@ -189,14 +189,7 @@ struct complex_power_test template ::value, int>::type = 0> void test_conditional_pow() { - -#if (XSIMD_X86_INSTR_SET >= XSIMD_X86_AVX512_VERSION) || (XSIMD_ARM_INSTR_SET >= XSIMD_ARM7_NEON_VERSION) -#if DEBUG_ACCURACY - test_pow_impl(); -#endif -#else test_pow_impl(); -#endif } }; diff --git a/test/test_complex_trigonometric.cpp b/test/test_complex_trigonometric.cpp index a48611054..f577fffc9 100644 --- a/test/test_complex_trigonometric.cpp +++ b/test/test_complex_trigonometric.cpp @@ -185,13 +185,7 @@ struct complex_trigonometric_test template ::value, int>::type = 0> void test_conditional_tan() { -#if (XSIMD_ARM_INSTR_SET >= XSIMD_ARM7_NEON_VERSION) -#if DEBUG_ACCURACY test_tan_impl(); -#endif -#else - test_tan_impl(); -#endif } };