Skip to content

Commit

Permalink
Make _MM_SHUFFLE unstable. (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter authored and alexcrichton committed Jul 14, 2018
1 parent 8517af5 commit e0d129c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coresimd/x86/sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit e0d129c

Please sign in to comment.