We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd6920 commit 5f32d72Copy full SHA for 5f32d72
test/test_xsimd_api.cpp
@@ -375,6 +375,7 @@ struct xsimd_api_integral_types_functions
375
template <typename U = T>
376
void test_bitwise_lshift_multiple(typename std::enable_if<!std::is_integral<U>::value, int>::type = 0)
377
{
378
+#ifndef XSIMD_NO_SUPPORTED_ARCHITECTURE
379
constexpr auto Max = static_cast<value_type>(std::numeric_limits<value_type>::digits);
380
constexpr auto max_batch = xsimd::make_batch_constant<value_type, Max>();
381
constexpr auto shifts = xsimd::make_batch_constant<value_type, arrange>() % max_batch;
@@ -390,6 +391,7 @@ struct xsimd_api_integral_types_functions
390
391
392
CHECK_EQ(shifted_cst.get(i), 1 << shifts.get(i));
393
}
394
+#endif
395
396
397
0 commit comments