@@ -2595,7 +2595,7 @@ pub unsafe fn _mm_storeu_pd(mem_addr: *mut f64, a: __m128d) {
25952595/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si16)
25962596#[ inline]
25972597#[ target_feature( enable = "sse2" ) ]
2598- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2598+ #[ stable ( feature = "simd_x86_updates" , since = "1.82.0 " ) ]
25992599pub unsafe fn _mm_storeu_si16 ( mem_addr : * mut u8 , a : __m128i ) {
26002600 ptr:: write_unaligned ( mem_addr as * mut i16 , simd_extract ( a. as_i16x8 ( ) , 0 ) )
26012601}
@@ -2607,7 +2607,7 @@ pub unsafe fn _mm_storeu_si16(mem_addr: *mut u8, a: __m128i) {
26072607/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si32)
26082608#[ inline]
26092609#[ target_feature( enable = "sse2" ) ]
2610- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2610+ #[ stable ( feature = "simd_x86_updates" , since = "1.82.0 " ) ]
26112611pub unsafe fn _mm_storeu_si32 ( mem_addr : * mut u8 , a : __m128i ) {
26122612 ptr:: write_unaligned ( mem_addr as * mut i32 , simd_extract ( a. as_i32x4 ( ) , 0 ) )
26132613}
@@ -2619,7 +2619,7 @@ pub unsafe fn _mm_storeu_si32(mem_addr: *mut u8, a: __m128i) {
26192619/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si64)
26202620#[ inline]
26212621#[ target_feature( enable = "sse2" ) ]
2622- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2622+ #[ stable ( feature = "simd_x86_updates" , since = "1.82.0 " ) ]
26232623pub unsafe fn _mm_storeu_si64 ( mem_addr : * mut u8 , a : __m128i ) {
26242624 ptr:: write_unaligned ( mem_addr as * mut i64 , simd_extract ( a. as_i64x2 ( ) , 0 ) )
26252625}
@@ -2756,7 +2756,7 @@ pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> __m128d {
27562756/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_loadu_si16)
27572757#[ inline]
27582758#[ target_feature( enable = "sse2" ) ]
2759- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2759+ #[ stable ( feature = "simd_x86_updates" , since = "1.82.0 " ) ]
27602760pub unsafe fn _mm_loadu_si16 ( mem_addr : * const u8 ) -> __m128i {
27612761 transmute ( i16x8:: new (
27622762 ptr:: read_unaligned ( mem_addr as * const i16 ) ,
@@ -2777,7 +2777,7 @@ pub unsafe fn _mm_loadu_si16(mem_addr: *const u8) -> __m128i {
27772777/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_loadu_si32)
27782778#[ inline]
27792779#[ target_feature( enable = "sse2" ) ]
2780- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2780+ #[ stable ( feature = "simd_x86_updates" , since = "1.82.0 " ) ]
27812781pub unsafe fn _mm_loadu_si32 ( mem_addr : * const u8 ) -> __m128i {
27822782 transmute ( i32x4:: new (
27832783 ptr:: read_unaligned ( mem_addr as * const i32 ) ,
0 commit comments