[llvm] Fixed typo in LangRef.rst (PR #68789)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 11 05:15:58 PDT 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: Paschalis Mpeis (paschalis)
<details>
<summary>Changes</summary>
An IR sample in LangRef had a misplaced comment delimiter.
---
Full diff: https://github.com/llvm/llvm-project/pull/68789.diff
1 Files Affected:
- (modified) llvm/docs/LangRef.rst (+2-2)
``````````diff
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 1883e9f6290b151..efcac5f0c8375f1 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:
``````````
</details>
https://github.com/llvm/llvm-project/pull/68789
More information about the llvm-commits
mailing list