mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 23:37:33 +00:00
Fix the assertion which checks the size of the input operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139633 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
302fdecf9d
commit
8f28aaf72c
@ -266,7 +266,7 @@ SDValue VectorLegalizer::ExpandVSELECT(SDValue Op) {
|
||||
// Implement VSELECT in terms of XOR, AND, OR
|
||||
// on platforms which do not support blend natively.
|
||||
EVT VT = Op.getOperand(0).getValueType();
|
||||
EVT OVT = Op.getOperand(0).getValueType();
|
||||
EVT OVT = Op.getOperand(1).getValueType();
|
||||
DebugLoc DL = Op.getDebugLoc();
|
||||
|
||||
SDValue Mask = Op.getOperand(0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user