Skip to content

Commit d957d96

Browse files
eq-bool
1 parent e7f4649 commit d957d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/xsimd/arch/xsimd_neon.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ namespace xsimd
938938
template <class A, class T, detail::enable_sized_integral_t<T, 8> = 0>
939939
XSIMD_INLINE batch_bool<T, A> eq(batch_bool<T, A> const& lhs, batch_bool<T, A> const& rhs, requires_arch<neon>) noexcept
940940
{
941-
return batch_bool<T, A>({ lhs.get(0) == rhs.get(0), lhs.get(1) == rhs.get(1) });
941+
return eq(lhs.data, rhs.data);
942942
}
943943

944944
/*************

0 commit comments

Comments
 (0)