1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Add a new VSELECT node.

llvm-svn: 27541
This commit is contained in:
Chris Lattner 2006-04-08 22:16:01 +00:00
parent 6cdc599d05
commit a4a7e59c52

View File

@ -230,6 +230,11 @@ namespace ISD {
VADD, VSUB, VMUL, VSDIV, VUDIV,
VAND, VOR, VXOR,
/// VSELECT(COND,LHS,RHS, COUNT,TYPE) - Select for MVT::Vector values.
/// COND is a boolean value. This node return LHS if COND is true, RHS if
/// COND is false.
VSELECT,
/// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
/// scalar value into the low element of the resultant vector type. The top
/// elements of the vector are undefined.