We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 277a0b5 commit 6f34905Copy full SHA for 6f34905
crates/core_arch/src/powerpc/altivec.rs
@@ -2363,8 +2363,8 @@ mod sealed {
2363
($fun:ident ($a:ident) -> $r:ident [$little:ident, $big:ident]) => {
2364
#[inline]
2365
#[target_feature(enable = "altivec")]
2366
- #[cfg_attr(all(test, target_endiant = "little"), assert_instr($little))]
2367
- #[cfg_attr(all(test, target_endiant = "big"), assert_instr($big))]
+ #[cfg_attr(all(test, target_endian = "little"), assert_instr($little))]
+ #[cfg_attr(all(test, target_endian = "big"), assert_instr($big))]
2368
unsafe fn $fun(a: $a) -> $r {
2369
if cfg!(target_endian = "little") {
2370
$little(a)
0 commit comments