diff --git a/library/stdarch/crates/core_arch/src/acle/barrier/mod.rs b/library/stdarch/crates/core_arch/src/acle/barrier/mod.rs index 61686895f014..47ca55cc1500 100644 --- a/library/stdarch/crates/core_arch/src/acle/barrier/mod.rs +++ b/library/stdarch/crates/core_arch/src/acle/barrier/mod.rs @@ -51,16 +51,10 @@ mod common; ))] pub use self::common::*; -#[cfg(any( - target_arch = "aarch64", - target_feature = "v7", -))] +#[cfg(any(target_arch = "aarch64", target_feature = "v7",))] mod not_mclass; -#[cfg(any( - target_arch = "aarch64", - target_feature = "v7", -))] +#[cfg(any(target_arch = "aarch64", target_feature = "v7",))] pub use self::not_mclass::*; #[cfg(target_arch = "aarch64")] diff --git a/library/stdarch/crates/core_arch/src/acle/mod.rs b/library/stdarch/crates/core_arch/src/acle/mod.rs index 1354fe9faef4..5f29decf5aad 100644 --- a/library/stdarch/crates/core_arch/src/acle/mod.rs +++ b/library/stdarch/crates/core_arch/src/acle/mod.rs @@ -91,16 +91,10 @@ mod dsp; pub use self::dsp::*; // Supported arches: 6, 7-M. See Section 10.1 of ACLE (e.g. SSAT) -#[cfg(all( - not(target_arch = "aarch64"), - target_feature = "v6", -))] +#[cfg(all(not(target_arch = "aarch64"), target_feature = "v6",))] mod sat; -#[cfg(all( - not(target_arch = "aarch64"), - target_feature = "v6", -))] +#[cfg(all(not(target_arch = "aarch64"), target_feature = "v6",))] pub use self::sat::*; // Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says