@@ -243,7 +243,6 @@ impl AtomicBool {
243243 /// ```
244244 #[ inline]
245245 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
246- #[ rustc_const_unstable( feature = "const_atomic_bool_new" ) ]
247246 pub const fn new ( v : bool ) -> AtomicBool {
248247 AtomicBool { v : UnsafeCell :: new ( v as u8 ) }
249248 }
@@ -657,7 +656,6 @@ impl<T> AtomicPtr<T> {
657656 /// ```
658657 #[ inline]
659658 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
660- #[ rustc_const_unstable( feature = "const_atomic_ptr_new" ) ]
661659 pub const fn new ( p : * mut T ) -> AtomicPtr < T > {
662660 AtomicPtr { p : UnsafeCell :: new ( p) }
663661 }
@@ -936,7 +934,7 @@ impl<T> From<*mut T> for AtomicPtr<T> {
936934
937935#[ cfg( target_has_atomic = "ptr" ) ]
938936macro_rules! atomic_int {
939- ( $stable: meta, $const_unstable : meta ,
937+ ( $stable: meta,
940938 $stable_cxchg: meta,
941939 $stable_debug: meta,
942940 $stable_access: meta,
@@ -1005,7 +1003,6 @@ macro_rules! atomic_int {
10051003 /// ```
10061004 #[ inline]
10071005 #[ $stable]
1008- #[ $const_unstable]
10091006 pub const fn new( v: $int_type) -> Self {
10101007 $atomic_type { v: UnsafeCell :: new( v) }
10111008 }
@@ -1369,7 +1366,6 @@ macro_rules! atomic_int {
13691366#[ cfg( target_has_atomic = "8" ) ]
13701367atomic_int ! {
13711368 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1372- rustc_const_unstable( feature = "const_atomic_i8_new" ) ,
13731369 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13741370 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13751371 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1379,7 +1375,6 @@ atomic_int! {
13791375#[ cfg( target_has_atomic = "8" ) ]
13801376atomic_int ! {
13811377 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1382- rustc_const_unstable( feature = "const_atomic_u8_new" ) ,
13831378 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13841379 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13851380 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1389,7 +1384,6 @@ atomic_int! {
13891384#[ cfg( target_has_atomic = "16" ) ]
13901385atomic_int ! {
13911386 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1392- rustc_const_unstable( feature = "const_atomic_i16_new" ) ,
13931387 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13941388 unstable( feature = "integer_atomics" , issue = "32976" ) ,
13951389 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1399,7 +1393,6 @@ atomic_int! {
13991393#[ cfg( target_has_atomic = "16" ) ]
14001394atomic_int ! {
14011395 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1402- rustc_const_unstable( feature = "const_atomic_u16_new" ) ,
14031396 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14041397 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14051398 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1409,7 +1402,6 @@ atomic_int! {
14091402#[ cfg( target_has_atomic = "32" ) ]
14101403atomic_int ! {
14111404 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1412- rustc_const_unstable( feature = "const_atomic_i32_new" ) ,
14131405 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14141406 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14151407 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1419,7 +1411,6 @@ atomic_int! {
14191411#[ cfg( target_has_atomic = "32" ) ]
14201412atomic_int ! {
14211413 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1422- rustc_const_unstable( feature = "const_atomic_u32_new" ) ,
14231414 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14241415 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14251416 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1429,7 +1420,6 @@ atomic_int! {
14291420#[ cfg( target_has_atomic = "64" ) ]
14301421atomic_int ! {
14311422 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1432- rustc_const_unstable( feature = "const_atomic_i64_new" ) ,
14331423 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14341424 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14351425 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1439,7 +1429,6 @@ atomic_int! {
14391429#[ cfg( target_has_atomic = "64" ) ]
14401430atomic_int ! {
14411431 unstable( feature = "integer_atomics" , issue = "32976" ) ,
1442- rustc_const_unstable( feature = "const_atomic_u64_new" ) ,
14431432 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14441433 unstable( feature = "integer_atomics" , issue = "32976" ) ,
14451434 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1449,7 +1438,6 @@ atomic_int! {
14491438#[ cfg( target_has_atomic = "ptr" ) ]
14501439atomic_int ! {
14511440 stable( feature = "rust1" , since = "1.0.0" ) ,
1452- rustc_const_unstable( feature = "const_atomic_isize_new" ) ,
14531441 stable( feature = "extended_compare_and_swap" , since = "1.10.0" ) ,
14541442 stable( feature = "atomic_debug" , since = "1.3.0" ) ,
14551443 stable( feature = "atomic_access" , since = "1.15.0" ) ,
@@ -1459,7 +1447,6 @@ atomic_int!{
14591447#[ cfg( target_has_atomic = "ptr" ) ]
14601448atomic_int ! {
14611449 stable( feature = "rust1" , since = "1.0.0" ) ,
1462- rustc_const_unstable( feature = "const_atomic_usize_new" ) ,
14631450 stable( feature = "extended_compare_and_swap" , since = "1.10.0" ) ,
14641451 stable( feature = "atomic_debug" , since = "1.3.0" ) ,
14651452 stable( feature = "atomic_access" , since = "1.15.0" ) ,
0 commit comments