Skip to content

Commit 028c247

Browse files
committed
Comment out empty sat module in ARM
1 parent 35681a9 commit 028c247

File tree

1 file changed

+7
-5
lines changed
  • crates/core_arch/src/arm

1 file changed

+7
-5
lines changed

crates/core_arch/src/arm/mod.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77
//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics
88
99
// 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-
#[cfg(any(target_feature = "v6", doc))]
14-
pub use self::sat::*;
10+
//
11+
// Commented out since this is an empty module. Uncomment when implementing it.
12+
//#[cfg(any(target_feature = "v6", doc))]
13+
//mod sat;
14+
//
15+
//#[cfg(any(target_feature = "v6", doc))]
16+
//pub use self::sat::*;
1517

1618
// Supported arches: 5TE, 7E-M. See Section 10.1 of ACLE (e.g. QADD)
1719
// We also include the A profile even though DSP is deprecated on that profile as of ACLE 2.0 (see

0 commit comments

Comments
 (0)