File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -26,23 +26,26 @@ pub use self::sat::*;
26
26
// section 5.4.7)
27
27
// Here we workaround the difference between LLVM's +dsp and ACLE's __ARM_FEATURE_DSP by gating on
28
28
// '+v5te' rather than on '+dsp'
29
- #[ cfg( all(
29
+ #[ cfg( any ( all(
30
30
not( target_arch = "aarch64" ) ,
31
31
any(
32
32
// >= v5TE but excludes v7-M
33
33
all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
34
34
// v7E-M
35
35
all( target_feature = "mclass" , target_feature = "dsp" ) ,
36
36
)
37
- ) ) ]
37
+ ) , doc ) ) ]
38
38
mod dsp;
39
39
40
- #[ cfg( all(
41
- not( target_arch = "aarch64" ) ,
42
- any(
43
- all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
44
- all( target_feature = "mclass" , target_feature = "dsp" ) ,
45
- )
40
+ #[ cfg( any(
41
+ all(
42
+ not( target_arch = "aarch64" ) ,
43
+ any(
44
+ all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
45
+ all( target_feature = "mclass" , target_feature = "dsp" ) ,
46
+ )
47
+ ) ,
48
+ doc
46
49
) ) ]
47
50
pub use self :: dsp:: * ;
48
51
You can’t perform that action at this time.
0 commit comments