Skip to content

Commit 5057759

Browse files
japaricgnzlbg
authored andcommitted
cargo fmt
1 parent 126529c commit 5057759

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

crates/core_arch/src/acle/barrier/mod.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,10 @@ mod common;
5151
))]
5252
pub use self::common::*;
5353

54-
#[cfg(any(
55-
target_arch = "aarch64",
56-
target_feature = "v7",
57-
))]
54+
#[cfg(any(target_arch = "aarch64", target_feature = "v7",))]
5855
mod not_mclass;
5956

60-
#[cfg(any(
61-
target_arch = "aarch64",
62-
target_feature = "v7",
63-
))]
57+
#[cfg(any(target_arch = "aarch64", target_feature = "v7",))]
6458
pub use self::not_mclass::*;
6559

6660
#[cfg(target_arch = "aarch64")]

crates/core_arch/src/acle/mod.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,10 @@ mod dsp;
9191
pub use self::dsp::*;
9292

9393
// Supported arches: 6, 7-M. See Section 10.1 of ACLE (e.g. SSAT)
94-
#[cfg(all(
95-
not(target_arch = "aarch64"),
96-
target_feature = "v6",
97-
))]
94+
#[cfg(all(not(target_arch = "aarch64"), target_feature = "v6",))]
9895
mod sat;
9996

100-
#[cfg(all(
101-
not(target_arch = "aarch64"),
102-
target_feature = "v6",
103-
))]
97+
#[cfg(all(not(target_arch = "aarch64"), target_feature = "v6",))]
10498
pub use self::sat::*;
10599

106100
// Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says

0 commit comments

Comments
 (0)