We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3f50a commit 0448960Copy full SHA for 0448960
crates/core_arch/src/arm/neon.rs
@@ -1483,15 +1483,6 @@ pub unsafe fn vld1q_u8(addr: *const u8) -> uint8x16_t {
1483
ptr::read(addr as *const uint8x16_t)
1484
}
1485
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
-
1495
macro_rules! arm_reinterpret {
1496
($name:ident, $from:ty, $to:ty) => {
1497
// Vector reinterpret cast operation
0 commit comments