[llvm] [LangRef] Remove extra commas of llvm.vp.ctlz (PR #117542)

via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 25 03:30:28 PST 2024


https://github.com/LiqinWeng created https://github.com/llvm/llvm-project/pull/117542

None

>From 3a56bae8e57c1dde3cb368192be8e8dd7e406a6f Mon Sep 17 00:00:00 2001
From: LiqinWeng <liqin.weng at spacemit.com>
Date: Mon, 25 Nov 2024 19:29:33 +0800
Subject: [PATCH] [LangRef] Remove extra commas of llvm.vp.ctlz

---
 llvm/docs/LangRef.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)



More information about the llvm-commits mailing list