Open
Description
_MM_SHUFFLE
was added recently in #479 . Currently _MM_SHUFFLE
returns a u32
, but the functions it's output is used with take an i32
, eg _mm_shuffle_epi32
.
Although normally this isn't an issue as you could just transmute the results, the input to _mm_shuffle_epi32
requires the shuffle argument to be constant.