cargo fmt

This commit is contained in:
Jorge Aparicio 2019-02-15 14:50:09 +01:00 committed by gnzlbg
parent a1b20cee61
commit 8b747beb20
2 changed files with 4 additions and 16 deletions

View file

@ -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")]

View file

@ -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