@@ -30,8 +30,8 @@ macro_rules! impl_shuffle1_dyn {
30
30
cfg_if! {
31
31
if #[ cfg( all(
32
32
any(
33
- all( target_aarch = "aarch64" , target_feature = "neon" ) ,
34
- all( target_aarch = "arm" , target_feature = "v7" ,
33
+ all( target_arch = "aarch64" , target_feature = "neon" ) ,
34
+ all( target_arch = "arm" , target_feature = "v7" ,
35
35
target_feature = "neon" )
36
36
) ,
37
37
any( feature = "core_arch" , libcore_neon)
@@ -41,9 +41,9 @@ macro_rules! impl_shuffle1_dyn {
41
41
type Indices = Self ;
42
42
#[ inline]
43
43
fn shuffle1_dyn( self , indices: Self :: Indices ) -> Self {
44
- #[ cfg( targt_arch = "aarch64" ) ]
44
+ #[ cfg( target_arch = "aarch64" ) ]
45
45
use crate :: arch:: aarch64:: vtbl1_u8;
46
- #[ cfg( targt_arch = "arm" ) ]
46
+ #[ cfg( target_arch = "arm" ) ]
47
47
use crate :: arch:: arm:: vtbl1_u8;
48
48
49
49
// This is safe because the binary is compiled with
@@ -85,7 +85,7 @@ macro_rules! impl_shuffle1_dyn {
85
85
}
86
86
}
87
87
}
88
- } else if #[ cfg( all( target_aarch = "aarch64" , target_feature = "neon" ,
88
+ } else if #[ cfg( all( target_arch = "aarch64" , target_feature = "neon" ,
89
89
any( feature = "core_arch" , libcore_neon) ) ) ] {
90
90
impl Shuffle1Dyn for u8x16 {
91
91
type Indices = Self ;
@@ -104,7 +104,7 @@ macro_rules! impl_shuffle1_dyn {
104
104
}
105
105
}
106
106
}
107
- } else if #[ cfg( all( target_aarch = "arm" , target_feature = "v7" ,
107
+ } else if #[ cfg( all( target_arch = "arm" , target_feature = "v7" ,
108
108
target_feature = "neon" ,
109
109
any( feature = "core_arch" , libcore_neon) ) ) ] {
110
110
impl Shuffle1Dyn for u8x16 {
0 commit comments