[llvm] Fixed typo in LangRef.rst (PR #68789)

Maciej Gabka via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 11 06:20:14 PDT 2023


================
@@ -18357,8 +18357,8 @@ For example:
 
 .. code-block:: text
 
- llvm.experimental.vector.splice(<A,B,C,D>, <E,F,G,H>, 1)  ==> <B, C, D, E> ; index
- llvm.experimental.vector.splice(<A,B,C,D>, <E,F,G,H>, -3) ==> <B, C, D, E> ; trailing elements
+ llvm.experimental.vector.splice(<A,B,C,D>, <E,F,G,H>, 1);  ==> <B, C, D, E> index
----------------
mgabka wrote:

I guess the change came as a copy&paste from:

llvm.experimental.vp.splice(<A,B,C,D>, <E,F,G,H>, 1, 2, 3)  ==> <B, E, F, poison> ; index
(<A,B,C,D>, <E,F,G,H>, -2, 3, 2) ==> <B, C, poison, poison> ; trailing elements

could you change it there as well?

https://github.com/llvm/llvm-project/pull/68789


More information about the llvm-commits mailing list