@@ -283,7 +283,7 @@ impl AtomicBool {
283283 /// ```
284284 #[inline]
285285 #[stable(feature = "rust1", since = "1.0.0")]
286- #[rustc_const_stable(feature = "const_atomic_new", since = "1.32 .0")]
286+ #[rustc_const_stable(feature = "const_atomic_new", since = "1.24 .0")]
287287 pub const fn new(v: bool) -> AtomicBool {
288288 AtomicBool { v: UnsafeCell::new(v as u8) }
289289 }
@@ -883,7 +883,7 @@ impl<T> AtomicPtr<T> {
883883 /// ```
884884 #[inline]
885885 #[stable(feature = "rust1", since = "1.0.0")]
886- #[rustc_const_stable(feature = "const_atomic_new", since = "1.32 .0")]
886+ #[rustc_const_stable(feature = "const_atomic_new", since = "1.24 .0")]
887887 pub const fn new(p: *mut T) -> AtomicPtr<T> {
888888 AtomicPtr { p: UnsafeCell::new(p) }
889889 }
@@ -2276,7 +2276,7 @@ macro_rules! atomic_int_ptr_sized {
22762276 stable(feature = "atomic_access", since = "1.15.0"),
22772277 stable(feature = "atomic_from", since = "1.23.0"),
22782278 stable(feature = "atomic_nand", since = "1.27.0"),
2279- rustc_const_stable(feature = "const_integer_atomics", since = "1.34 .0"),
2279+ rustc_const_stable(feature = "const_integer_atomics", since = "1.24 .0"),
22802280 stable(feature = "rust1", since = "1.0.0"),
22812281 "isize",
22822282 "",
@@ -2296,7 +2296,7 @@ macro_rules! atomic_int_ptr_sized {
22962296 stable(feature = "atomic_access", since = "1.15.0"),
22972297 stable(feature = "atomic_from", since = "1.23.0"),
22982298 stable(feature = "atomic_nand", since = "1.27.0"),
2299- rustc_const_stable(feature = "const_integer_atomics", since = "1.34 .0"),
2299+ rustc_const_stable(feature = "const_integer_atomics", since = "1.24 .0"),
23002300 stable(feature = "rust1", since = "1.0.0"),
23012301 "usize",
23022302 "",
0 commit comments