@@ -258,6 +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
262
pub struct __m512i( i64 , i64 , i64 , i64 , i64 , i64 , i64 , i64 ) ;
262
263
263
264
/// 512-bit wide set of sixteen `f32` types, x86-specific
@@ -275,6 +276,7 @@ types! {
275
276
/// Most intrinsics using `__m512` are prefixed with `_mm512_` and are
276
277
/// suffixed with "ps" (or otherwise contain "ps"). Not to be confused with
277
278
/// "pd" which is used for `__m512d`.
279
+ #[ stable( feature = "simd_avx512_types" , since = "CURRENT_RUSTC_VERSION" ) ]
278
280
pub struct __m512(
279
281
f32 , f32 , f32 , f32 , f32 , f32 , f32 , f32 ,
280
282
f32 , f32 , f32 , f32 , f32 , f32 , f32 , f32 ,
@@ -295,6 +297,7 @@ types! {
295
297
/// Most intrinsics using `__m512d` are prefixed with `_mm512_` and are
296
298
/// suffixed with "pd" (or otherwise contain "pd"). Not to be confused with
297
299
/// "ps" which is used for `__m512`.
300
+ #[ stable( feature = "simd_avx512_types" , since = "CURRENT_RUSTC_VERSION" ) ]
298
301
pub struct __m512d( f64 , f64 , f64 , f64 , f64 , f64 , f64 , f64 ) ;
299
302
300
303
/// 128-bit wide set of eight 'u16' types, x86-specific
0 commit comments