This commit is contained in:
joaquintides
2022-10-27 18:41:21 +02:00
parent f9b1a5f105
commit 00a9266096

View File

@ -1558,8 +1558,7 @@ private:
auto p=arrays.elements+pos*N;
prefetch_elements(p);
do{
//auto n=unchecked_countr_zero(mask);
auto n=(unsigned int)__builtin_ctz((unsigned int)mask);
auto n=unchecked_countr_zero(mask);
if(BOOST_LIKELY(bool(pred()(x,key_from(p[n]))))){
return {pg,n,p+n};
}