We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d89c38b commit 8cb6688Copy full SHA for 8cb6688
crates/core_arch/src/arm/mod.rs
@@ -19,19 +19,9 @@ mod v7;
19
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))]
20
pub use self::v7::*;
21
22
-// NEON is supported on AArch64, and on ARM when built with the v7 and neon
23
-// features. Building ARM without neon produces incorrect codegen.
24
-#[cfg(any(
25
- target_arch = "aarch64",
26
- all(target_feature = "v7", target_feature = "neon"),
27
- dox
28
-))]
+#[cfg(any(target_arch = "aarch64", target_feature = "v7", dox))]
29
mod neon;
30
31
32
33
34
35
pub use self::neon::*;
36
37
0 commit comments