From d1a0f02f7cce1c7c9a4bd5caa488fe4e4f259fb1 Mon Sep 17 00:00:00 2001 From: Cameron Hart Date: Sat, 14 Jul 2018 21:51:53 +1000 Subject: [PATCH] Make _MM_SHUFFLE unstable. --- coresimd/x86/sse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coresimd/x86/sse.rs b/coresimd/x86/sse.rs index c53b46a774..24dbcaa8eb 100644 --- a/coresimd/x86/sse.rs +++ b/coresimd/x86/sse.rs @@ -979,7 +979,7 @@ pub unsafe fn _mm_setzero_ps() -> __m128 { /// A utility function for creating masks to use with Intel shuffle and permute intrinsics. #[inline] #[allow(non_snake_case)] -#[stable(feature = "simd_x86", since = "1.28.0")] +#[unstable(feature = "stdsimd", issue = "27731")] pub const fn _MM_SHUFFLE(z: u32, y: u32, x: u32, w: u32) -> u32 { (z << 6) | (y << 4) | (x << 2) | w }