[llvm] 41418ca - [NFC] Fixed typo in LangRef.rst (#68789)

via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 13 02:12:55 PDT 2023


Author: Paschalis Mpeis
Date: 2023-10-13T10:12:50+01:00
New Revision: 41418ca13323c43460806af43eff8f2384ef08f8

URL: https://github.com/llvm/llvm-project/commit/41418ca13323c43460806af43eff8f2384ef08f8
DIFF: https://github.com/llvm/llvm-project/commit/41418ca13323c43460806af43eff8f2384ef08f8.diff

LOG: [NFC] Fixed typo in LangRef.rst (#68789)

An IR sample in LangRef had a misplaced comment delimiter.

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 1883e9f6290b151..35123474381e7d6 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -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
+ llvm.experimental.vector.splice(<A,B,C,D>, <E,F,G,H>, -3); ==> <B, C, D, E> trailing elements
 
 
 Arguments:
@@ -21517,8 +21517,8 @@ Examples:
 
 .. code-block:: text
 
- llvm.experimental.vp.splice(<A,B,C,D>, <E,F,G,H>, 1, 2, 3)  ==> <B, E, F, poison> ; index
- llvm.experimental.vp.splice(<A,B,C,D>, <E,F,G,H>, -2, 3, 2) ==> <B, C, poison, poison> ; trailing elements
+ llvm.experimental.vp.splice(<A,B,C,D>, <E,F,G,H>, 1, 2, 3);  ==> <B, E, F, poison> index
+ llvm.experimental.vp.splice(<A,B,C,D>, <E,F,G,H>, -2, 3, 2); ==> <B, C, poison, poison> trailing elements
 
 
 .. _int_vp_load:


        


More information about the llvm-commits mailing list