@@ -8,7 +8,6 @@ Cranelift doesn't support them yet
88 library/core/src/panic/unwind_safe.rs | 6 -----
99 library/core/src/sync/atomic.rs | 38 ---------------------------
1010 library/core/tests/atomic.rs | 4 ---
11- library/std/src/time/monotonic.rs | 6 +++--
1211 4 files changed, 4 insertions(+), 50 deletions(-)
1312
1413diff --git a/library/core/src/panic/unwind_safe.rs b/library/core/src/panic/unwind_safe.rs
@@ -99,38 +98,6 @@ index b735957..ea728b6 100644
9998 #[cfg(target_has_atomic = "ptr")]
10099 assert_eq!(align_of::<AtomicUsize>(), size_of::<AtomicUsize>());
101100 #[cfg(target_has_atomic = "ptr")]
102- diff --git a/library/std/src/time/monotonic.rs b/library/std/src/time/monotonic.rs
103- index fa96b7a..2854f9c 100644
104- --- a/library/std/src/time/monotonic.rs
105- +++ b/library/std/src/time/monotonic.rs
106- @@ -5,7 +5,7 @@ pub(super) fn monotonize(raw: time::Instant) -> time::Instant {
107- inner::monotonize(raw)
108- }
109-
110- - #[cfg(any(all(target_has_atomic = "64", not(target_has_atomic = "128")), target_arch = "aarch64"))]
111- + #[cfg(target_has_atomic = "64")]
112- pub mod inner {
113- use crate::sync::atomic::AtomicU64;
114- use crate::sync::atomic::Ordering::*;
115- @@ -70,6 +70,7 @@ pub mod inner {
116- }
117- }
118-
119- + /*
120- #[cfg(all(target_has_atomic = "128", not(target_arch = "aarch64")))]
121- pub mod inner {
122- use crate::sync::atomic::AtomicU128;
123- @@ -94,8 +95,9 @@ pub mod inner {
124- ZERO.checked_add_duration(&Duration::new(secs, nanos)).unwrap()
125- }
126- }
127- + */
128-
129- - #[cfg(not(any(target_has_atomic = "64", target_has_atomic = "128")))]
130- + #[cfg(not(target_has_atomic = "64"))]
131- pub mod inner {
132- use crate::cmp;
133- use crate::sys::time;
134101- -
1351022.26.2.7.g19db9cfb68
136103
0 commit comments