1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Document the fact that the selection dag changes the vselect condition type

llvm-svn: 148411
This commit is contained in:
Nadav Rotem 2012-01-18 20:50:30 +00:00
parent 0958707826
commit d5e875c776

View File

@ -323,6 +323,9 @@ namespace ISD {
// and #2), returning a vector result. All vectors have the same length.
// Much like the scalar select and setcc, each bit in the condition selects
// whether the corresponding result element is taken from op #1 or op #2.
// At first, the VSELECT condition is of vXi1 type. Later, targets may change
// the condition type in order to match the VSELECT node using a a pattern.
// The condition follows the BooleanContent format of the target.
VSELECT,
// Select with condition operator - This selects between a true value and