Skip to content

Commit 02de848

Browse files
committed
Move ARM specific neon functions in acle/neon/… moved to arm/neon.rs
1 parent a63b0d4 commit 02de848

File tree

6 files changed

+1412
-1380
lines changed

6 files changed

+1412
-1380
lines changed

crates/core_arch/src/acle/crypto.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::core_arch::arm::{uint32x4_t, uint8x16_t};
1+
use crate::core_arch::acle::{uint32x4_t, uint8x16_t};
22

33
#[allow(improper_ctypes)]
44
extern "C" {

crates/core_arch/src/acle/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ mod crypto;
7979
pub use self::crypto::*;
8080

8181
#[cfg(any(target_arch = "aarch64", target_feature = "v7", doc))]
82-
mod neon;
82+
pub(crate) mod neon;
8383
#[cfg(any(target_arch = "aarch64", target_feature = "v7", doc))]
8484
pub use self::neon::*;
8585

0 commit comments

Comments
 (0)