Fix a problem Nate found where we swapped the operands of SHL/SHR_PARTS. This

fixes fourinarow


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-08-30 17:42:59 +00:00
parent 14b86c72a2
commit b551ba7661

View File

@ -1228,8 +1228,8 @@ SDOperand PPC32DAGToDAGISel::Select(SDOperand Op) {
return Result[Op.ResNo];
}
case ISD::SHL_PARTS: {
SDOperand HI = Select(N->getOperand(0));
SDOperand LO = Select(N->getOperand(1));
SDOperand LO = Select(N->getOperand(0));
SDOperand HI = Select(N->getOperand(1));
SDOperand SH = Select(N->getOperand(2));
SDOperand SH_LO_R = CurDAG->getTargetNode(PPC::SUBFIC, MVT::i32, MVT::Flag,
SH, getI32Imm(32));
@ -1247,8 +1247,8 @@ SDOperand PPC32DAGToDAGISel::Select(SDOperand Op) {
return Result[Op.ResNo];
}
case ISD::SRL_PARTS: {
SDOperand HI = Select(N->getOperand(0));
SDOperand LO = Select(N->getOperand(1));
SDOperand LO = Select(N->getOperand(0));
SDOperand HI = Select(N->getOperand(1));
SDOperand SH = Select(N->getOperand(2));
SDOperand SH_HI_L = CurDAG->getTargetNode(PPC::SUBFIC, MVT::i32, MVT::Flag,
SH, getI32Imm(32));