Fix a type in the legalization of CONCAT_VECTORS.

llvm-svn: 142579
This commit is contained in:
Nadav Rotem 2011-10-20 13:38:16 +00:00
parent 8bece6fe69
commit fe3969293d
1 changed files with 1 additions and 1 deletions

View File

@ -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");