We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35681a9 commit 028c247Copy full SHA for 028c247
crates/core_arch/src/arm/mod.rs
@@ -7,11 +7,13 @@
7
//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics
8
9
// Supported arches: 6, 7-M. See Section 10.1 of ACLE (e.g. SSAT)
10
-#[cfg(any(target_feature = "v6", doc))]
11
-mod sat;
12
-
13
14
-pub use self::sat::*;
+//
+// Commented out since this is an empty module. Uncomment when implementing it.
+//#[cfg(any(target_feature = "v6", doc))]
+//mod sat;
15
16
+//pub use self::sat::*;
17
18
// Supported arches: 5TE, 7E-M. See Section 10.1 of ACLE (e.g. QADD)
19
// We also include the A profile even though DSP is deprecated on that profile as of ACLE 2.0 (see
0 commit comments