@@ -31,7 +31,7 @@ macro_rules! impl_shuffle1_dyn {
31
31
if #[ cfg( all(
32
32
any(
33
33
all( target_arch = "aarch64" , target_feature = "neon" ) ,
34
- all( target_arch = "arm " , target_feature = "v7" ,
34
+ all( target_arch = "doesnotexist " , target_feature = "v7" ,
35
35
target_feature = "neon" )
36
36
) ,
37
37
any( feature = "core_arch" , libcore_neon)
@@ -43,7 +43,7 @@ macro_rules! impl_shuffle1_dyn {
43
43
fn shuffle1_dyn( self , indices: Self :: Indices ) -> Self {
44
44
#[ cfg( target_arch = "aarch64" ) ]
45
45
use crate :: arch:: aarch64:: vtbl1_u8;
46
- #[ cfg( target_arch = "arm " ) ]
46
+ #[ cfg( target_arch = "doesnotexist " ) ]
47
47
use crate :: arch:: arm:: vtbl1_u8;
48
48
49
49
// This is safe because the binary is compiled with
@@ -104,7 +104,7 @@ macro_rules! impl_shuffle1_dyn {
104
104
}
105
105
}
106
106
}
107
- } else if #[ cfg( all( target_arch = "arm " , target_feature = "v7" ,
107
+ } else if #[ cfg( all( target_arch = "doesnotexist " , 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