forked from OSchip/llvm-project
Fix a type in the legalization of CONCAT_VECTORS.
llvm-svn: 142579
This commit is contained in:
parent
8bece6fe69
commit
fe3969293d
|
@ -2926,7 +2926,7 @@ SDValue DAGTypeLegalizer::PromoteIntRes_SCALAR_TO_VECTOR(SDNode *N) {
|
|||
SDValue DAGTypeLegalizer::PromoteIntRes_CONCAT_VECTORS(SDNode *N) {
|
||||
DebugLoc dl = N->getDebugLoc();
|
||||
|
||||
SDValue Op0 = N->getOperand(1);
|
||||
SDValue Op0 = N->getOperand(0);
|
||||
SDValue Op1 = N->getOperand(1);
|
||||
assert(Op0.getValueType() == Op1.getValueType() &&
|
||||
"Invalid input vector types");
|
||||
|
|
Loading…
Reference in New Issue