1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00

Revert r142579, "Fix a type in the legalization of CONCAT_VECTORS". This is

causing one of the unit tests to infinitely loop, which resulted in the 
buildbots stalling.

llvm-svn: 142604
This commit is contained in:
Chad Rosier 2011-10-20 19:19:10 +00:00
parent 88e989068f
commit 7aab2c25dc

View File

@ -2926,7 +2926,7 @@ SDValue DAGTypeLegalizer::PromoteIntRes_SCALAR_TO_VECTOR(SDNode *N) {
SDValue DAGTypeLegalizer::PromoteIntRes_CONCAT_VECTORS(SDNode *N) { SDValue DAGTypeLegalizer::PromoteIntRes_CONCAT_VECTORS(SDNode *N) {
DebugLoc dl = N->getDebugLoc(); DebugLoc dl = N->getDebugLoc();
SDValue Op0 = N->getOperand(0); SDValue Op0 = N->getOperand(1);
SDValue Op1 = N->getOperand(1); SDValue Op1 = N->getOperand(1);
assert(Op0.getValueType() == Op1.getValueType() && assert(Op0.getValueType() == Op1.getValueType() &&
"Invalid input vector types"); "Invalid input vector types");