File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1938,7 +1938,7 @@ atomic_int! {
1938
1938
8 ,
1939
1939
u64 AtomicU64 ATOMIC_U64_INIT
1940
1940
}
1941
- #[ cfg( target_has_atomic = "128" ) ]
1941
+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
1942
1942
atomic_int ! {
1943
1943
unstable( feature = "integer_atomics" , issue = "32976" ) ,
1944
1944
unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1952,7 +1952,7 @@ atomic_int! {
1952
1952
16 ,
1953
1953
i128 AtomicI128 ATOMIC_I128_INIT
1954
1954
}
1955
- #[ cfg( target_has_atomic = "128" ) ]
1955
+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
1956
1956
atomic_int ! {
1957
1957
unstable( feature = "integer_atomics" , issue = "32976" ) ,
1958
1958
unstable( feature = "integer_atomics" , issue = "32976" ) ,
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ impl RefUnwindSafe for atomic::AtomicI32 {}
264
264
#[ cfg( target_has_atomic = "64" ) ]
265
265
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
266
266
impl RefUnwindSafe for atomic:: AtomicI64 { }
267
- #[ cfg( target_has_atomic = "128" ) ]
267
+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
268
268
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
269
269
impl RefUnwindSafe for atomic:: AtomicI128 { }
270
270
@@ -283,7 +283,7 @@ impl RefUnwindSafe for atomic::AtomicU32 {}
283
283
#[ cfg( target_has_atomic = "64" ) ]
284
284
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
285
285
impl RefUnwindSafe for atomic:: AtomicU64 { }
286
- #[ cfg( target_has_atomic = "128" ) ]
286
+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
287
287
#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
288
288
impl RefUnwindSafe for atomic:: AtomicU128 { }
289
289
You can’t perform that action at this time.
0 commit comments