Skip to content

Commit a88b37a

Browse files
committed
Fix 'since' in simd_avx512_types stability attribute
1 parent 7091896 commit a88b37a

File tree

1 file changed

+3
-3
lines changed
  • crates/core_arch/src/x86

1 file changed

+3
-3
lines changed

crates/core_arch/src/x86/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ types! {
258258
///
259259
/// Note that this means that an instance of `__m512i` typically just means
260260
/// 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")]
262262
pub struct __m512i(i64, i64, i64, i64, i64, i64, i64, i64);
263263

264264
/// 512-bit wide set of sixteen `f32` types, x86-specific
@@ -276,7 +276,7 @@ types! {
276276
/// Most intrinsics using `__m512` are prefixed with `_mm512_` and are
277277
/// suffixed with "ps" (or otherwise contain "ps"). Not to be confused with
278278
/// "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")]
280280
pub struct __m512(
281281
f32, f32, f32, f32, f32, f32, f32, f32,
282282
f32, f32, f32, f32, f32, f32, f32, f32,
@@ -297,7 +297,7 @@ types! {
297297
/// Most intrinsics using `__m512d` are prefixed with `_mm512_` and are
298298
/// suffixed with "pd" (or otherwise contain "pd"). Not to be confused with
299299
/// "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")]
301301
pub struct __m512d(f64, f64, f64, f64, f64, f64, f64, f64);
302302

303303
/// 128-bit wide set of eight `u16` types, x86-specific

0 commit comments

Comments
 (0)