remove only use of cmpmsk8 and unused cmpmsk16

This commit is contained in:
Matthew Barr
2016-06-14 11:21:48 +10:00
parent 0722b5db5b
commit 9c915cc936
2 changed files with 1 additions and 11 deletions

View File

@@ -91,7 +91,7 @@ static really_inline
u32 packedExtract128(m128 s, const m128 permute, const m128 compare) {
m128 shuffled = pshufb(s, permute);
m128 compared = and128(shuffled, compare);
u16 rv = ~cmpmsk8(compared, shuffled);
u16 rv = ~movemask128(eq128(compared, shuffled));
return (u32)rv;
}