Skip to content

Commit 2759940

Browse files
committed
Stabilize vget_low_s8 on AArch64
This was missed when most of the AArch64 intrinsics were stabilized.
1 parent b4a0e07 commit 2759940

File tree

1 file changed

+4
-0
lines changed
  • crates/core_arch/src/arm_shared/neon

1 file changed

+4
-0
lines changed

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

+4
Original file line numberDiff line numberDiff line change
@@ -4989,6 +4989,10 @@ pub unsafe fn vget_high_f32(a: float32x4_t) -> float32x2_t {
49894989
#[target_feature(enable = "neon")]
49904990
#[cfg_attr(target_arch = "arm", target_feature(enable = "v7"))]
49914991
#[cfg_attr(test, assert_instr(nop))]
4992+
#[cfg_attr(
4993+
target_arch = "aarch64",
4994+
stable(feature = "neon_intrinsics", since = "1.59.0")
4995+
)]
49924996
pub unsafe fn vget_low_s8(a: int8x16_t) -> int8x8_t {
49934997
simd_shuffle8!(a, a, [0, 1, 2, 3, 4, 5, 6, 7])
49944998
}

0 commit comments

Comments
 (0)