Skip to content

Commit 431d801

Browse files
committed
Fix sse2
1 parent cdf4280 commit 431d801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/xsimd/arch/xsimd_sse2.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ namespace xsimd
588588
// bitwise_lshift multiple (constant)
589589
template <class A, uint16_t... Vs>
590590
XSIMD_INLINE batch<uint16_t, A> bitwise_lshift(
591-
batch<uint16_t, A> const& self, batch_constant<uint16_t, A, Vs...> shifts, requires_arch<sse2>) noexcept
591+
batch<uint16_t, A> const& self, batch_constant<uint16_t, A, Vs...>, requires_arch<sse2>) noexcept
592592
{
593593
constexpr auto mults = batch_constant<uint16_t, A, static_cast<uint16_t>(1u << Vs)...>();
594594
return _mm_mullo_epi16(self, mults.as_batch());

0 commit comments

Comments
 (0)