[llvm] 92d279f - [LangRef][VP] Correct operands' types in vp.select documentation

Fraser Cormack via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 19 04:17:35 PST 2021


Author: Fraser Cormack
Date: 2021-11-19T12:08:34Z
New Revision: 92d279fd6d1f22d532126185a7d91a6dfe2a82b7

URL: https://github.com/llvm/llvm-project/commit/92d279fd6d1f22d532126185a7d91a6dfe2a82b7
DIFF: https://github.com/llvm/llvm-project/commit/92d279fd6d1f22d532126185a7d91a6dfe2a82b7.diff

LOG: [LangRef][VP] Correct operands' types in vp.select documentation

The types of llvm.vp.select's operands much match the return type.

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index aaec2a413b05d..e6500905353ef 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -17792,7 +17792,7 @@ This is an overloaded intrinsic.
 ::
 
       declare <16 x i32>  @llvm.vp.select.v16i32 (<16 x i1> <condition>, <16 x i32> <on_true>, <16 x i32> <on_false>, i32 <evl>)
-      declare <vscale x 4 x i64>  @llvm.vp.select.nxv4i64 (<vscale x 4 x i1> <condition>, <vscale x 4 x i32> <on_true>, <vscale x 4 x i32> <on_false>, i32 <evl>)
+      declare <vscale x 4 x i64>  @llvm.vp.select.nxv4i64 (<vscale x 4 x i1> <condition>, <vscale x 4 x i64> <on_true>, <vscale x 4 x i64> <on_false>, i32 <evl>)
 
 Overview:
 """""""""


        


More information about the llvm-commits mailing list