Skip to content

Commit

Permalink
[llvm][doc] Fix return type of vector.histogram in LangRef examples…
Browse files Browse the repository at this point in the history
… (NFC) (llvm#113172)

The `@llvm.experimental.vector.histogram.add` returns void.
  • Loading branch information
MacDue authored Oct 22, 2024
1 parent 7305734 commit 0412d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/docs/LangRef.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19925,8 +19925,8 @@ More update operation types may be added in the future.

::

declare <8 x i32> @llvm.experimental.vector.histogram.add.v8p0.i32(<8 x ptr> %ptrs, i32 %inc, <8 x i1> %mask)
declare <vscale x 2 x i64> @llvm.experimental.vector.histogram.add.nxv2p0.i64(<vscale x 2 x ptr> %ptrs, i64 %inc, <vscale x 2 x i1> %mask)
declare void @llvm.experimental.vector.histogram.add.v8p0.i32(<8 x ptr> %ptrs, i32 %inc, <8 x i1> %mask)
declare void @llvm.experimental.vector.histogram.add.nxv2p0.i64(<vscale x 2 x ptr> %ptrs, i64 %inc, <vscale x 2 x i1> %mask)

Arguments:
""""""""""
Expand Down

0 comments on commit 0412d71

Please sign in to comment.