Skip to content

Commit 053c9ed

Browse files
WIP
1 parent 9787c29 commit 053c9ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/xsimd/arch/xsimd_altivec.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ namespace xsimd
808808
}
809809

810810
// sadd
811-
template <class A, class T, class = typename std::enable_if<std::is_integral<T>::value, void>::type>
811+
template <class A, class T, class = typename std::enable_if<std::is_integral<T>::value && sizeof(T) != 8, void>::type>
812812
XSIMD_INLINE batch<T, A> sadd(batch<T, A> const& self, batch<T, A> const& other, requires_arch<altivec>) noexcept
813813
{
814814
return vec_adds(self.data, other.data);

0 commit comments

Comments
 (0)