@@ -258,7 +258,7 @@ types! {
258
258
///
259
259
/// Note that this means that an instance of `__m512i` typically just means
260
260
/// a "bag of bits" which is left up to interpretation at the point of use.
261
- #[ stable( feature = "simd_avx512_types" , since = "CURRENT_RUSTC_VERSION " ) ]
261
+ #[ stable( feature = "simd_avx512_types" , since = "1.72.0 " ) ]
262
262
pub struct __m512i( i64 , i64 , i64 , i64 , i64 , i64 , i64 , i64 ) ;
263
263
264
264
/// 512-bit wide set of sixteen `f32` types, x86-specific
@@ -276,7 +276,7 @@ types! {
276
276
/// Most intrinsics using `__m512` are prefixed with `_mm512_` and are
277
277
/// suffixed with "ps" (or otherwise contain "ps"). Not to be confused with
278
278
/// "pd" which is used for `__m512d`.
279
- #[ stable( feature = "simd_avx512_types" , since = "CURRENT_RUSTC_VERSION " ) ]
279
+ #[ stable( feature = "simd_avx512_types" , since = "1.72.0 " ) ]
280
280
pub struct __m512(
281
281
f32 , f32 , f32 , f32 , f32 , f32 , f32 , f32 ,
282
282
f32 , f32 , f32 , f32 , f32 , f32 , f32 , f32 ,
@@ -297,7 +297,7 @@ types! {
297
297
/// Most intrinsics using `__m512d` are prefixed with `_mm512_` and are
298
298
/// suffixed with "pd" (or otherwise contain "pd"). Not to be confused with
299
299
/// "ps" which is used for `__m512`.
300
- #[ stable( feature = "simd_avx512_types" , since = "CURRENT_RUSTC_VERSION " ) ]
300
+ #[ stable( feature = "simd_avx512_types" , since = "1.72.0 " ) ]
301
301
pub struct __m512d( f64 , f64 , f64 , f64 , f64 , f64 , f64 , f64 ) ;
302
302
303
303
/// 128-bit wide set of eight `u16` types, x86-specific
0 commit comments