mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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:
parent
14b86c72a2
commit
b551ba7661
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user