File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,9 @@ mod v7;
19
19
#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
20
20
pub use self :: v7:: * ;
21
21
22
- // NEON is supported on AArch64, and on ARM when built with the v7 and neon
23
- // features. Building ARM without neon produces incorrect codegen.
24
- #[ cfg( any(
25
- target_arch = "aarch64" ,
26
- all( target_feature = "v7" , target_feature = "neon" ) ,
27
- dox
28
- ) ) ]
22
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , dox) ) ]
29
23
mod neon;
30
- #[ cfg( any(
31
- target_arch = "aarch64" ,
32
- all( target_feature = "v7" , target_feature = "neon" ) ,
33
- dox
34
- ) ) ]
24
+ #[ cfg( any( target_arch = "aarch64" , target_feature = "v7" , dox) ) ]
35
25
pub use self :: neon:: * ;
36
26
37
27
#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
You can’t perform that action at this time.
0 commit comments