[llvm] 8f44fee - [docs] Fix typo in llvm.experimental.vector.compress code-block snippet
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 20 08:44:55 PDT 2024
Author: Simon Pilgrim
Date: 2024-08-20T16:44:44+01:00
New Revision: 8f44feedb593cde6826d1b417c4d4d58ca060dde
URL: https://github.com/llvm/llvm-project/commit/8f44feedb593cde6826d1b417c4d4d58ca060dde
DIFF: https://github.com/llvm/llvm-project/commit/8f44feedb593cde6826d1b417c4d4d58ca060dde.diff
LOG: [docs] Fix typo in llvm.experimental.vector.compress code-block snippet
Added:
Modified:
llvm/docs/LangRef.rst
Removed:
################################################################################
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 1920ffb7b08d3..cac4f7106769d 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -19754,7 +19754,7 @@ This is an overloaded intrinsic. A number of scalar values of integer, floating
from an input vector and placed adjacently within the result vector. A mask defines which elements to collect from the vector.
The remaining lanes are filled with values from ``passthru``.
-:: code-block:: llvm
+.. code-block:: llvm
declare <8 x i32> @llvm.experimental.vector.compress.v8i32(<8 x i32> <value>, <8 x i1> <mask>, <8 x i32> <passthru>)
declare <16 x float> @llvm.experimental.vector.compress.v16f32(<16 x float> <value>, <16 x i1> <mask>, <16 x float> undef)
More information about the llvm-commits
mailing list