forked from OSchip/llvm-project
Fix a bug introduced on r92564 where the name "Node" was already
in use by Mips. llvm-svn: 93897
This commit is contained in:
parent
c35681b298
commit
e1afaf5c22
|
@ -396,9 +396,9 @@ SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
|
|||
else
|
||||
Op = (Opcode == ISD::UDIVREM ? Mips::DIVu : Mips::DIV);
|
||||
|
||||
SDNode *Node = CurDAG->getMachineNode(Op, dl, MVT::Flag, Op1, Op2);
|
||||
SDNode *MulDiv = CurDAG->getMachineNode(Op, dl, MVT::Flag, Op1, Op2);
|
||||
|
||||
SDValue InFlag = SDValue(Node, 0);
|
||||
SDValue InFlag = SDValue(MulDiv, 0);
|
||||
SDNode *Lo = CurDAG->getMachineNode(Mips::MFLO, dl, MVT::i32,
|
||||
MVT::Flag, InFlag);
|
||||
InFlag = SDValue(Lo,1);
|
||||
|
|
Loading…
Reference in New Issue