add missing findLSB for ppc64le

This commit is contained in:
Konstantinos Margaritis 2023-12-18 22:24:28 +02:00 committed by Konstantinos Margaritis
parent de66c745ad
commit 9a53b193e1

View File

@ -555,6 +555,12 @@ really_inline SuperVector<16> SuperVector<16>::loadu_maskz(void const *ptr, uint
return mask & v;
}
template<>
really_inline typename SuperVector<16>::comparemask_type SuperVector<16>::findLSB(typename SuperVector<16>::comparemask_type &z)
{
return findAndClearLSB_32(&z);
}
template<>
really_inline SuperVector<16> SuperVector<16>::alignr(SuperVector<16> &other, int8_t offset)
{