@@ -2595,7 +2595,7 @@ pub unsafe fn _mm_storeu_pd(mem_addr: *mut f64, a: __m128d) {
2595
2595
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si16)
2596
2596
#[ inline]
2597
2597
#[ target_feature( enable = "sse2" ) ]
2598
- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2598
+ #[ stable ( feature = "simd_x86_updates" , since = "1.81 " ) ]
2599
2599
pub unsafe fn _mm_storeu_si16 ( mem_addr : * mut u8 , a : __m128i ) {
2600
2600
ptr:: write_unaligned ( mem_addr as * mut i16 , simd_extract ( a. as_i16x8 ( ) , 0 ) )
2601
2601
}
@@ -2607,7 +2607,7 @@ pub unsafe fn _mm_storeu_si16(mem_addr: *mut u8, a: __m128i) {
2607
2607
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si32)
2608
2608
#[ inline]
2609
2609
#[ target_feature( enable = "sse2" ) ]
2610
- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2610
+ #[ stable ( feature = "simd_x86_updates" , since = "1.81 " ) ]
2611
2611
pub unsafe fn _mm_storeu_si32 ( mem_addr : * mut u8 , a : __m128i ) {
2612
2612
ptr:: write_unaligned ( mem_addr as * mut i32 , simd_extract ( a. as_i32x4 ( ) , 0 ) )
2613
2613
}
@@ -2619,7 +2619,7 @@ pub unsafe fn _mm_storeu_si32(mem_addr: *mut u8, a: __m128i) {
2619
2619
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_storeu_si64)
2620
2620
#[ inline]
2621
2621
#[ target_feature( enable = "sse2" ) ]
2622
- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2622
+ #[ stable ( feature = "simd_x86_updates" , since = "1.81 " ) ]
2623
2623
pub unsafe fn _mm_storeu_si64 ( mem_addr : * mut u8 , a : __m128i ) {
2624
2624
ptr:: write_unaligned ( mem_addr as * mut i64 , simd_extract ( a. as_i64x2 ( ) , 0 ) )
2625
2625
}
@@ -2756,7 +2756,7 @@ pub unsafe fn _mm_loadu_pd(mem_addr: *const f64) -> __m128d {
2756
2756
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_loadu_si16)
2757
2757
#[ inline]
2758
2758
#[ target_feature( enable = "sse2" ) ]
2759
- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2759
+ #[ stable ( feature = "simd_x86_updates" , since = "1.81 " ) ]
2760
2760
pub unsafe fn _mm_loadu_si16 ( mem_addr : * const u8 ) -> __m128i {
2761
2761
transmute ( i16x8:: new (
2762
2762
ptr:: read_unaligned ( mem_addr as * const i16 ) ,
@@ -2777,7 +2777,7 @@ pub unsafe fn _mm_loadu_si16(mem_addr: *const u8) -> __m128i {
2777
2777
/// [Intel's documentation](https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm_loadu_si32)
2778
2778
#[ inline]
2779
2779
#[ target_feature( enable = "sse2" ) ]
2780
- #[ unstable ( feature = "simd_x86_updates" , issue = "126936 " ) ]
2780
+ #[ stable ( feature = "simd_x86_updates" , since = "1.81 " ) ]
2781
2781
pub unsafe fn _mm_loadu_si32 ( mem_addr : * const u8 ) -> __m128i {
2782
2782
transmute ( i32x4:: new (
2783
2783
ptr:: read_unaligned ( mem_addr as * const i32 ) ,
0 commit comments