We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00a0bbd commit 0610befCopy full SHA for 0610bef
crates/core_arch/src/acle/simd32.rs
@@ -65,7 +65,7 @@
65
#[cfg(test)]
66
use stdarch_test::assert_instr;
67
68
-use crate::{core_arch::acle::dsp::int16x2_t, mem::transmute};
+use crate::{core_arch::arm::dsp::int16x2_t, mem::transmute};
69
70
types! {
71
/// ARM-specific 32-bit wide vector of four packed `i8`.
crates/core_arch/src/arm/mod.rs
@@ -35,7 +35,7 @@ pub use self::sat::*;
35
all(target_feature = "mclass", target_feature = "dsp"),
36
)
37
), doc))]
38
-mod dsp;
+pub(crate) mod dsp;
39
40
#[cfg(any(
41
all(
0 commit comments