File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 7
7
//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics
8
8
9
9
// Supported arches: 6, 7-M. See Section 10.1 of ACLE (e.g. SSAT)
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::*;
10
+ # [ cfg ( any ( target_feature = "v6" , doc ) ) ]
11
+ mod sat ;
12
+
13
+ # [ cfg ( any ( target_feature = "v6" , doc ) ) ]
14
+ // Remove warning because this module is currently empty.
15
+ # [ allow ( unused_imports ) ]
16
+ pub use self :: sat:: * ;
17
17
18
18
// Supported arches: 5TE, 7E-M. See Section 10.1 of ACLE (e.g. QADD)
19
19
// We also include the A profile even though DSP is deprecated on that profile as of ACLE 2.0 (see
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ mod core_arch;
74
74
#[ stable( feature = "stdsimd" , since = "1.27.0" ) ]
75
75
pub mod arch {
76
76
#[ stable( feature = "stdsimd" , since = "1.27.0" ) ]
77
+ #[ allow( unused_imports) ]
77
78
pub use crate :: core_arch:: arch:: * ;
78
79
#[ stable( feature = "stdsimd" , since = "1.27.0" ) ]
79
80
pub use core:: arch:: asm;
You can’t perform that action at this time.
0 commit comments