Skip to content

Commit 0448960

Browse files
committed
Rmove vst1q_u8
1 parent 7e3f50a commit 0448960

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

crates/core_arch/src/arm/neon.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1483,15 +1483,6 @@ pub unsafe fn vld1q_u8(addr: *const u8) -> uint8x16_t {
14831483
ptr::read(addr as *const uint8x16_t)
14841484
}
14851485

1486-
/// void vst1q_u8 (uint8_t * ptr, uint8x16_t val)
1487-
#[inline]
1488-
#[target_feature(enable = "neon")]
1489-
#[cfg_attr(target_arch = "arm", target_feature(enable = "v7"))]
1490-
#[cfg_attr(test, assert_instr(st1))]
1491-
pub unsafe fn vst1q_u8(addr: *mut u8, val: uint8x16_t) {
1492-
ptr::write(addr as *mut uint8x16_t, val);
1493-
}
1494-
14951486
macro_rules! arm_reinterpret {
14961487
($name:ident, $from:ty, $to:ty) => {
14971488
// Vector reinterpret cast operation

0 commit comments

Comments
 (0)