cargo fmt
This commit is contained in:
parent
a1b20cee61
commit
8b747beb20
2 changed files with 4 additions and 16 deletions
|
|
@ -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")]
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue