[llvm] [Docs] Fix concat vectors (PR #131860)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 10:09:01 PDT 2025


================
@@ -725,7 +725,13 @@ Mixing scalable vectors and fixed vectors are not allowed.
 G_CONCAT_VECTORS
 ^^^^^^^^^^^^^^^^
 
-Concatenate two vectors to form a longer vector.
+Concatenate vectors to form a longer vector.
+
+.. code-block:: none
+
+  %4:_(<16 x i32>) = G_CONCAT_VECTORS %3:_(<4 x i32>), %2:_(<4 x i32>),
+                                      %1:_(<4 x i32>), %0:_(<4 x i32>)
----------------
arsenm wrote:

```suggestion
  %4:_(<16 x i32>) = G_CONCAT_VECTORS %0:_(<4 x i32>), %1:_(<4 x i32>),
                                      %2:_(<4 x i32>), %3:_(<4 x i32>)
```

Better use in order numbers to avoid confusing about the element indexing 

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


More information about the llvm-commits mailing list