File tree Expand file tree Collapse file tree 2 files changed +4
-16
lines changed
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;
51
51
) ) ]
52
52
pub use self :: common:: * ;
53
53
54
- #[ cfg( any(
55
- target_arch = "aarch64" ,
56
- target_feature = "v7" ,
57
- ) ) ]
54
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , ) ) ]
58
55
mod not_mclass;
59
56
60
- #[ cfg( any(
61
- target_arch = "aarch64" ,
62
- target_feature = "v7" ,
63
- ) ) ]
57
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , ) ) ]
64
58
pub use self :: not_mclass:: * ;
65
59
66
60
#[ cfg( target_arch = "aarch64" ) ]
Original file line number Diff line number Diff line change @@ -91,16 +91,10 @@ mod dsp;
91
91
pub use self :: dsp:: * ;
92
92
93
93
// 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" , ) ) ]
98
95
mod sat;
99
96
100
- #[ cfg( all(
101
- not( target_arch = "aarch64" ) ,
102
- target_feature = "v6" ,
103
- ) ) ]
97
+ #[ cfg( all( not( target_arch = "aarch64" ) , target_feature = "v6" , ) ) ]
104
98
pub use self :: sat:: * ;
105
99
106
100
// 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