Skip to content

Commit f6ae93b

Browse files
committed
fixup! Move vector combine intrisics to arm/neon.rs
1 parent daa1081 commit f6ae93b

File tree

1 file changed

+2
-1
lines changed
  • crates/core_arch/src/arm_shared/neon

1 file changed

+2
-1
lines changed

crates/core_arch/src/arm_shared/neon/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6957,7 +6957,8 @@ pub unsafe fn vcombine_p8(low: poly8x8_t, high: poly8x8_t) -> poly8x16_t {
69576957
#[inline]
69586958
#[target_feature(enable = "neon")]
69596959
#[cfg_attr(target_arch = "arm", target_feature(enable = "v7"))]
6960-
#[cfg_attr(test, assert_instr(mov))]
6960+
#[cfg_attr(all(test, target_arch = "arm"), assert_instr(nop))]
6961+
#[cfg_attr(all(test, target_arch = "aarch64"), assert_instr(mov))]
69616962
#[stable(feature = "neon_intrinsics", since = "1.59.0")]
69626963
pub unsafe fn vcombine_p16(low: poly16x4_t, high: poly16x4_t) -> poly16x8_t {
69636964
simd_shuffle8!(low, high, [0, 1, 2, 3, 4, 5, 6, 7])

0 commit comments

Comments
 (0)