diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs index ffcc507d2a763..d5abd9b581c65 100644 --- a/library/std/src/sys/unix/time.rs +++ b/library/std/src/sys/unix/time.rs @@ -150,7 +150,7 @@ impl From for Timespec { } #[cfg(any( - all(target_os = "macos", any(not(target_arch = "aarch64"), miri)), + all(target_os = "macos", any(not(target_arch = "aarch64"))), target_os = "ios", target_os = "watchos" ))] @@ -270,7 +270,7 @@ mod inner { } #[cfg(not(any( - all(target_os = "macos", any(not(target_arch = "aarch64"), miri)), + all(target_os = "macos", any(not(target_arch = "aarch64"))), target_os = "ios", target_os = "watchos" )))]