File tree Expand file tree Collapse file tree 2 files changed +4
-16
lines changed
library/stdarch/crates/core_arch/src/acle Expand file tree Collapse file tree 2 files changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -51,16 +51,10 @@ mod common;
5151) ) ]
5252pub use self :: common:: * ;
5353
54- #[ cfg( any(
55- target_arch = "aarch64" ,
56- target_feature = "v7" ,
57- ) ) ]
54+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , ) ) ]
5855mod not_mclass;
5956
60- #[ cfg( any(
61- target_arch = "aarch64" ,
62- target_feature = "v7" ,
63- ) ) ]
57+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , ) ) ]
6458pub use self :: not_mclass:: * ;
6559
6660#[ cfg( target_arch = "aarch64" ) ]
Original file line number Diff line number Diff line change @@ -91,16 +91,10 @@ mod dsp;
9191pub use self :: dsp:: * ;
9292
9393// Supported arches: 6, 7-M. See Section 10.1 of ACLE (e.g. SSAT)
94- #[ cfg( all(
95- not( target_arch = "aarch64" ) ,
96- target_feature = "v6" ,
97- ) ) ]
94+ #[ cfg( all( not( target_arch = "aarch64" ) , target_feature = "v6" , ) ) ]
9895mod sat;
9996
100- #[ cfg( all(
101- not( target_arch = "aarch64" ) ,
102- target_feature = "v6" ,
103- ) ) ]
97+ #[ cfg( all( not( target_arch = "aarch64" ) , target_feature = "v6" , ) ) ]
10498pub use self :: sat:: * ;
10599
106100// Deprecated in ACLE 2.0 for the A profile but fully supported on the M and R profiles, says
You can’t perform that action at this time.
0 commit comments