We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e51e4 commit dcbf501Copy full SHA for dcbf501
crates/core_arch/src/acle/mod.rs
@@ -86,17 +86,17 @@ mod dsp;
86
pub use self::dsp::*;
87
88
// Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says
89
-// Section 5.4.9 of ACLE.
+// Section 5.4.9 of ACLE. We'll expose these for the A profile even if deprecated
90
#[cfg(any(
91
- // v7-R
92
- target_feature = "rclass",
+ // v7-A, v7-R
+ all(target_feature = "v6", not(target_feature = "mclass")),
93
// v7E-M
94
all(target_feature = "mclass", target_feature = "dsp")
95
))]
96
mod simd32;
97
98
99
100
101
102
pub use self::simd32::*;
0 commit comments