]> git.proxmox.com Git - rustc.git/blobdiff - library/stdarch/crates/core_arch/src/arm/mod.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / library / stdarch / crates / core_arch / src / arm / mod.rs
index bd902dc6079b6956530089c0f3a6bc01fbb6f030..ff983b34b84415ca88081717dfad27e28bad6f2c 100644 (file)
@@ -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"))]