_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.
_MM_SHUFFLEwas added recently in #479 . Currently_MM_SHUFFLEreturns au32, but the functions it's output is used with take ani32, eg_mm_shuffle_epi32.Although normally this isn't an issue as you could just transmute the results, the input to
_mm_shuffle_epi32requires the shuffle argument to be constant.