Skip to content

Commit 386fa99

Browse files
Temporary workaround for #1232
1 parent 495a387 commit 386fa99

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

include/xsimd/arch/xsimd_neon64.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,15 @@ namespace xsimd
182182
* store<batch_bool> *
183183
*********************/
184184

185+
#if !defined(__GNUC__) && !defined(__clang__)
186+
// FIXME: reproduce the issue and understand why it fails, see
187+
// https://github.com/xtensor-stack/xsimd/issues/1232
185188
template <class A>
186189
XSIMD_INLINE void store(batch_bool<double, A> b, bool* mem, requires_arch<neon>) noexcept
187190
{
188191
store(batch_bool<uint64_t, A>(b.data), mem, A {});
189192
}
193+
#endif
190194

191195
/****************
192196
* load_complex *

0 commit comments

Comments
 (0)