simplify function

This commit is contained in:
Konstantinos Margaritis 2021-06-07 10:04:36 +03:00 committed by Konstantinos Margaritis
parent e215157a21
commit 273b9683ac

View File

@ -281,9 +281,7 @@ char testbit128(m128 val, unsigned int n) {
static really_inline
m128 pshufb_m128(m128 a, m128 b) {
m128 result;
result = _mm_shuffle_epi8(a, b);
return result;
return _mm_shuffle_epi8(a, b);
}
static really_inline