[llvm] [LangRef] Remove extra commas of llvm.vp.ctlz (PR #117542)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 25 03:31:09 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: LiqinWeng (LiqinWeng)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/117542.diff
1 Files Affected:
- (modified) llvm/docs/LangRef.rst (+1-1)
``````````diff
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 79bdd25c18f1fd..be5b6e2e215e65 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -25291,7 +25291,7 @@ Examples:
.. code-block:: llvm
- %r = call <4 x i32> @llvm.vp.ctlz.v4i32(<4 x i32> %a, , i1 false, <4 x i1> %mask, i32 %evl)
+ %r = call <4 x i32> @llvm.vp.ctlz.v4i32(<4 x i32> %a, i1 false, <4 x i1> %mask, i32 %evl)
;; For all lanes below %evl, %r is lane-wise equivalent to %also.r
%t = call <4 x i32> @llvm.ctlz.v4i32(<4 x i32> %a, i1 false)
``````````
</details>
https://github.com/llvm/llvm-project/pull/117542
More information about the llvm-commits
mailing list