We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f91d45f commit 3943793Copy full SHA for 3943793
crates/core_arch/src/acle/mod.rs
@@ -120,7 +120,9 @@ mod simd32;
120
pub use self::simd32::*;
121
122
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))]
123
-pub mod crc;
+mod crc;
124
+#[cfg(any(target_arch = "aarch64", target_feature = "v7", doc))]
125
+pub use crc::*;
126
127
mod sealed {
128
pub trait Dmb {
crates/core_arch/src/arm/mod.rs
@@ -24,9 +24,6 @@ mod neon;
24
#[cfg(any(target_arch = "aarch64", target_feature = "v7", doc))]
25
pub use self::neon::*;
26
27
-#[cfg(any(target_arch = "aarch64", target_feature = "v7"))]
28
-pub use crate::core_arch::acle::crc::*;
29
-
30
31
mod crypto;
32
0 commit comments