We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8517af5 commit e0d129cCopy full SHA for e0d129c
coresimd/x86/sse.rs
@@ -979,7 +979,7 @@ pub unsafe fn _mm_setzero_ps() -> __m128 {
979
/// A utility function for creating masks to use with Intel shuffle and permute intrinsics.
980
#[inline]
981
#[allow(non_snake_case)]
982
-#[stable(feature = "simd_x86", since = "1.28.0")]
+#[unstable(feature = "stdsimd", issue = "27731")]
983
pub const fn _MM_SHUFFLE(z: u32, y: u32, x: u32, w: u32) -> u32 {
984
(z << 6) | (y << 4) | (x << 2) | w
985
}
0 commit comments