Skip to content

Commit

Permalink
update arm64 hax intrinsics
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Jan 30, 2025
1 parent f3eb1e6 commit 77fed3a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libcrux-intrinsics/src/arm64_extract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ pub fn _vst1q_s16(out: &mut [i16], v: _int16x8_t) {
unimplemented!()
}

#[inline(always)]
pub fn _vst1q_bytes(out: &mut [u8], v: _int16x8_t) {
unimplemented!()
}

#[inline(always)]
pub fn _vld1q_bytes(bytes: &[u8]) -> _int16x8_t {
unimplemented!()
}

#[inline(always)]
pub fn _vld1q_s16(array: &[i16]) -> _int16x8_t {
unimplemented!()
Expand Down

0 comments on commit 77fed3a

Please sign in to comment.