Skip to content

Commit 0610bef

Browse files
committed
Fix use of 'dsp' module within simd32 (it was moved to /arm)
1 parent 00a0bbd commit 0610bef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/core_arch/src/acle/simd32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
#[cfg(test)]
6666
use stdarch_test::assert_instr;
6767

68-
use crate::{core_arch::acle::dsp::int16x2_t, mem::transmute};
68+
use crate::{core_arch::arm::dsp::int16x2_t, mem::transmute};
6969

7070
types! {
7171
/// ARM-specific 32-bit wide vector of four packed `i8`.

crates/core_arch/src/arm/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub use self::sat::*;
3535
all(target_feature = "mclass", target_feature = "dsp"),
3636
)
3737
), doc))]
38-
mod dsp;
38+
pub(crate) mod dsp;
3939

4040
#[cfg(any(
4141
all(

0 commit comments

Comments
 (0)