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;
1919#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
2020pub use self :: v7:: * ;
2121
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) ) ]
2923mod 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) ) ]
3525pub use self :: neon:: * ;
3626
3727#[ cfg( any( target_arch = "aarch64" , target_feature = "v7" ) ) ]
You can’t perform that action at this time.
0 commit comments