File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -119,8 +119,10 @@ mod simd32;
119
119
) ) ]
120
120
pub use self :: simd32:: * ;
121
121
122
- #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
123
- pub mod crc;
122
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , doc) ) ]
123
+ mod crc;
124
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , doc) ) ]
125
+ pub use crc:: * ;
124
126
125
127
mod sealed {
126
128
pub trait Dmb {
Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ mod neon;
24
24
#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , doc) ) ]
25
25
pub use self :: neon:: * ;
26
26
27
- #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
28
- pub use crate :: core_arch:: acle:: crc:: * ;
29
-
30
27
#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
31
28
mod crypto;
32
29
#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
You can’t perform that action at this time.
0 commit comments