File tree 1 file changed +3
-7
lines changed
crates/core_arch/src/acle
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -65,22 +65,18 @@ mod registers;
65
65
pub use self :: registers:: * ;
66
66
67
67
// Supported arches: 5TE, 7E-M. See Section 10.1 of ACLE (e.g. QADD)
68
- // But we also exclude the A profile because DSP is deprecated on that profile as of ACLE 2.0 (see
68
+ // We also include the A profile even though DSP is deprecated on that profile as of ACLE 2.0 (see
69
69
// section 5.4.7)
70
70
#[ cfg( any(
71
71
// >= v5TE but excludes v7-A
72
- all( target_feature = "v5te" , not( target_feature = "mclass" ) , not ( target_feature = "aclass" ) ) ,
72
+ all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
73
73
// v7E-M
74
74
all( target_feature = "mclass" , target_feature = "dsp" ) ,
75
75
) ) ]
76
76
mod dsp;
77
77
78
78
#[ cfg( any(
79
- all(
80
- target_feature = "v5te" ,
81
- not( target_feature = "mclass" ) ,
82
- not( target_feature = "aclass" )
83
- ) ,
79
+ all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
84
80
all( target_feature = "mclass" , target_feature = "dsp" ) ,
85
81
) ) ]
86
82
pub use self :: dsp:: * ;
You can’t perform that action at this time.
0 commit comments