add arm rshift128/rshift128

This commit is contained in:
Konstantinos Margaritis
2021-07-20 14:33:03 +03:00
committed by Konstantinos Margaritis
parent e1950f1ce5
commit b0fbb39cf0

View File

@@ -410,5 +410,17 @@ really_inline SuperVector<16> SuperVector<16>::rshift64(uint8_t const N)
} }
#endif #endif
template<>
really_inline SuperVector<16> SuperVector<16>::lshift128(uint8_t const N)
{
return *this << N;
}
template<>
really_inline SuperVector<16> SuperVector<16>::rshift128(uint8_t const N)
{
return *this >> N;
}
#endif // SIMD_IMPL_HPP #endif // SIMD_IMPL_HPP