[llvm] r361341 - [Docs] fix formatting for bullet list; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue May 21 17:48:47 PDT 2019
Author: spatel
Date: Tue May 21 17:48:47 2019
New Revision: 361341
URL: http://llvm.org/viewvc/llvm-project?rev=361341&view=rev
Log:
[Docs] fix formatting for bullet list; NFC
Modified:
llvm/trunk/docs/CodeGenerator.rst
Modified: llvm/trunk/docs/CodeGenerator.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodeGenerator.rst?rev=361341&r1=361340&r2=361341&view=diff
==============================================================================
--- llvm/trunk/docs/CodeGenerator.rst (original)
+++ llvm/trunk/docs/CodeGenerator.rst Tue May 21 17:48:47 2019
@@ -919,23 +919,23 @@ are created from the shufflevector IR. T
handled include:
* Vector select --- Each element of the vector is chosen from either of the
-corresponding elements of the 2 input vectors. This operation may also be
-known as a "blend" or "bitwise select" in target assembly. This type of shuffle
-maps directly to the ``shuffle_vector`` SelectionDAG node.
+ corresponding elements of the 2 input vectors. This operation may also be
+ known as a "blend" or "bitwise select" in target assembly. This type of shuffle
+ maps directly to the ``shuffle_vector`` SelectionDAG node.
* Insert subvector --- A vector is placed into a longer vector type starting
-at index 0. This type of shuffle maps directly to the ``insert_subvector``
-SelectionDAG node with the ``index`` operand set to 0.
+ at index 0. This type of shuffle maps directly to the ``insert_subvector``
+ SelectionDAG node with the ``index`` operand set to 0.
* Extract subvector --- A vector is pulled from a longer vector type starting
-at index 0. This type of shuffle maps directly to the ``extract_subvector``
-SelectionDAG node with the ``index`` operand set to 0.
+ at index 0. This type of shuffle maps directly to the ``extract_subvector``
+ SelectionDAG node with the ``index`` operand set to 0.
* Splat --- All elements of the vector have identical scalar elements. This
-operation may also be known as a "broadcast" or "duplicate" in target assembly.
-The shufflevector IR instruction may change the vector length, so this operation
-may map to multiple SelectionDAG nodes including ``shuffle_vector``,
-``concat_vectors``, ``insert_subvector``, and ``extract_subvector``.
+ operation may also be known as a "broadcast" or "duplicate" in target assembly.
+ The shufflevector IR instruction may change the vector length, so this operation
+ may map to multiple SelectionDAG nodes including ``shuffle_vector``,
+ ``concat_vectors``, ``insert_subvector``, and ``extract_subvector``.
Prior to the existence of the Legalize passes, we required that every target
`selector`_ supported and handled every operator and type even if they are not
More information about the llvm-commits
mailing list