mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Add a new VSELECT node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27541 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
957e1674e7
commit
49027e639e
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user