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