Skip to content

Commit

Permalink
Fix pointer types
Browse files Browse the repository at this point in the history
Co-authored-by: SpencerAbson <[email protected]>
  • Loading branch information
rsandifo-arm and SpencerAbson authored Nov 13, 2024
1 parent e7dc5d6 commit 8fc3a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/acle.md
Original file line number Diff line number Diff line change
Expand Up @@ -9279,8 +9279,8 @@ Scatter store quadwords.
// _mf8, _bf16, _f16, _f32, _f64
void svst1q_scatter[_u64base][_s8](svbool_t pg, svuint64_t zn, svint8_t data);
void svst1q_scatter[_u64base]_offset[_s8](svbool_t pg, svuint64_t zn, int64_t offset, svint8_t data);
void svst1q_scatter_[s64]offset[_s8](svbool_t pg, uint8_t *base, svint64_t offset, svint8_t data);
void svst1q_scatter_[u64]offset[_s8](svbool_t pg, uint8_t *base, svuint64_t offset, svint8_t data);
void svst1q_scatter_[s64]offset[_s8](svbool_t pg, int8_t *base, svint64_t offset, svint8_t data);
void svst1q_scatter_[u64]offset[_s8](svbool_t pg, int8_t *base, svuint64_t offset, svint8_t data);

// Variants are also available for:
// _u16, _u32, _s32, _u64, _s64
Expand Down

0 comments on commit 8fc3a1b

Please sign in to comment.