File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1938,7 +1938,7 @@ atomic_int! {
19381938 8 ,
19391939 u64 AtomicU64 ATOMIC_U64_INIT
19401940}
1941- #[ cfg( target_has_atomic = "128" ) ]
1941+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
19421942atomic_int ! {
19431943 unstable( feature = "integer_atomics" , issue = "32976" ) ,
19441944 unstable( feature = "integer_atomics" , issue = "32976" ) ,
@@ -1952,7 +1952,7 @@ atomic_int! {
19521952 16 ,
19531953 i128 AtomicI128 ATOMIC_I128_INIT
19541954}
1955- #[ cfg( target_has_atomic = "128" ) ]
1955+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
19561956atomic_int ! {
19571957 unstable( feature = "integer_atomics" , issue = "32976" ) ,
19581958 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 {}
264264#[ cfg( target_has_atomic = "64" ) ]
265265#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
266266impl RefUnwindSafe for atomic:: AtomicI64 { }
267- #[ cfg( target_has_atomic = "128" ) ]
267+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
268268#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
269269impl RefUnwindSafe for atomic:: AtomicI128 { }
270270
@@ -283,7 +283,7 @@ impl RefUnwindSafe for atomic::AtomicU32 {}
283283#[ cfg( target_has_atomic = "64" ) ]
284284#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
285285impl RefUnwindSafe for atomic:: AtomicU64 { }
286- #[ cfg( target_has_atomic = "128" ) ]
286+ #[ cfg( all ( not ( stage0 ) , target_has_atomic = "128" ) ) ]
287287#[ unstable( feature = "integer_atomics" , issue = "32976" ) ]
288288impl RefUnwindSafe for atomic:: AtomicU128 { }
289289
You can’t perform that action at this time.
0 commit comments