Skip to content

Commit 026b10e

Browse files
Fix typos in shuffle_dyn1.rs
1 parent f989976 commit 026b10e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/codegen/shuffle1_dyn.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ macro_rules! impl_shuffle1_dyn {
3030
cfg_if! {
3131
if #[cfg(all(
3232
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",
3535
target_feature = "neon")
3636
),
3737
any(feature = "core_arch", libcore_neon)
@@ -41,9 +41,9 @@ macro_rules! impl_shuffle1_dyn {
4141
type Indices = Self;
4242
#[inline]
4343
fn shuffle1_dyn(self, indices: Self::Indices) -> Self {
44-
#[cfg(targt_arch = "aarch64")]
44+
#[cfg(target_arch = "aarch64")]
4545
use crate::arch::aarch64::vtbl1_u8;
46-
#[cfg(targt_arch = "arm")]
46+
#[cfg(target_arch = "arm")]
4747
use crate::arch::arm::vtbl1_u8;
4848

4949
// This is safe because the binary is compiled with
@@ -85,7 +85,7 @@ macro_rules! impl_shuffle1_dyn {
8585
}
8686
}
8787
}
88-
} else if #[cfg(all(target_aarch = "aarch64", target_feature = "neon",
88+
} else if #[cfg(all(target_arch = "aarch64", target_feature = "neon",
8989
any(feature = "core_arch", libcore_neon)))] {
9090
impl Shuffle1Dyn for u8x16 {
9191
type Indices = Self;
@@ -104,7 +104,7 @@ macro_rules! impl_shuffle1_dyn {
104104
}
105105
}
106106
}
107-
} else if #[cfg(all(target_aarch = "arm", target_feature = "v7",
107+
} else if #[cfg(all(target_arch = "arm", target_feature = "v7",
108108
target_feature = "neon",
109109
any(feature = "core_arch", libcore_neon)))] {
110110
impl Shuffle1Dyn for u8x16 {

0 commit comments

Comments
 (0)