Remove requirement on neon feature for arm (#893)
This commit is contained in:
parent
b11ca63e7b
commit
63af5f371c
1 changed files with 2 additions and 12 deletions
|
|
@ -19,19 +19,9 @@ mod v7;
|
|||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))]
|
||||
pub use self::v7::*;
|
||||
|
||||
// NEON is supported on AArch64, and on ARM when built with the v7 and neon
|
||||
// features. Building ARM without neon produces incorrect codegen.
|
||||
#[cfg(any(
|
||||
target_arch = "aarch64",
|
||||
all(target_feature = "v7", target_feature = "neon"),
|
||||
dox
|
||||
))]
|
||||
#[cfg(any(target_arch = "aarch64", target_feature = "v7", dox))]
|
||||
mod neon;
|
||||
#[cfg(any(
|
||||
target_arch = "aarch64",
|
||||
all(target_feature = "v7", target_feature = "neon"),
|
||||
dox
|
||||
))]
|
||||
#[cfg(any(target_arch = "aarch64", target_feature = "v7", dox))]
|
||||
pub use self::neon::*;
|
||||
|
||||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue