Skip to content

Commit 7e3f50a

Browse files
committed
Rust format
1 parent b6f00cf commit 7e3f50a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

crates/core_arch/src/arm/neon.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ arm_simd_cleu!(vcle_u16, uint16x4_t);
949949
arm_simd_cleu!(vcleq_u16, uint16x8_t);
950950
arm_simd_cleu!(vcle_u32, uint32x2_t);
951951
arm_simd_cleu!(vcleq_u32, uint32x4_t);
952-
arm_simd_2!(vcle_f32, float32x2_t, uint32x2_t, simd_le, fcmge, fcmge);
952+
arm_simd_2!(vcle_f32, float32x2_t, uint32x2_t, simd_le, fcmge, fcmge);
953953
arm_simd_2!(vcleq_f32, float32x4_t, uint32x4_t, simd_le, fcmge, fcmge);
954954

955955
/// Folding minimum of adjacent pairs
@@ -1397,16 +1397,16 @@ macro_rules! arm_vget_lane {
13971397
#[cfg_attr(target_arch = "arm", target_feature(enable = "v7"))]
13981398
#[cfg_attr(test, assert_instr(umov))]
13991399
pub unsafe fn $name(v: $from, lane: i32) -> $to {
1400-
macro_rules! call {
1401-
($imm5:expr) => {
1402-
if ($imm5) < 0 || ($imm5) > $lanes {
1403-
unreachable_unchecked()
1404-
} else {
1405-
simd_extract(v, $imm5)
1406-
}
1400+
macro_rules! call {
1401+
($imm5:expr) => {
1402+
if ($imm5) < 0 || ($imm5) > $lanes {
1403+
unreachable_unchecked()
1404+
} else {
1405+
simd_extract(v, $imm5)
14071406
}
1408-
}
1409-
constify_imm5!(lane, call)
1407+
};
1408+
}
1409+
constify_imm5!(lane, call)
14101410
}
14111411
};
14121412
}

0 commit comments

Comments
 (0)