Skip to content

Commit e0d129c

Browse files
bitshifteralexcrichton
authored andcommitted
Make _MM_SHUFFLE unstable. (#524)
1 parent 8517af5 commit e0d129c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coresimd/x86/sse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ pub unsafe fn _mm_setzero_ps() -> __m128 {
979979
/// A utility function for creating masks to use with Intel shuffle and permute intrinsics.
980980
#[inline]
981981
#[allow(non_snake_case)]
982-
#[stable(feature = "simd_x86", since = "1.28.0")]
982+
#[unstable(feature = "stdsimd", issue = "27731")]
983983
pub const fn _MM_SHUFFLE(z: u32, y: u32, x: u32, w: u32) -> u32 {
984984
(z << 6) | (y << 4) | (x << 2) | w
985985
}

0 commit comments

Comments
 (0)