Skip to content

Commit e0a09cd

Browse files
Temporary workaround for #1232
1 parent e3609d6 commit e0a09cd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

include/xsimd/arch/xsimd_neon64.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,15 @@ namespace xsimd
274274
* store<batch_bool> *
275275
*********************/
276276

277+
#if !defined(__GNUC__) && !defined(__clang__)
278+
// FIXME: reproduce the issue and understand why it fails, see
279+
// https://github.com/xtensor-stack/xsimd/issues/1232
277280
template <class A>
278281
XSIMD_INLINE void store(batch_bool<double, A> b, bool* mem, requires_arch<neon>) noexcept
279282
{
280283
store(batch_bool<uint64_t, A>(b.data), mem, A {});
281284
}
285+
#endif
282286

283287
/****************
284288
* load_complex *

0 commit comments

Comments
 (0)