Deleted Added
full compact
MipsISelDAGToDAG.cpp (251662) MipsISelDAGToDAG.cpp (255804)
1//===-- MipsISelDAGToDAG.cpp - A Dag to Dag Inst Selector for Mips --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 83 unchanged lines hidden (view full) ---

92 unsigned Opcode = Node->getOpcode();
93
94 // Dump information about the Node being selected
95 DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n");
96
97 // If we have a custom node, we already have selected!
98 if (Node->isMachineOpcode()) {
99 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
1//===-- MipsISelDAGToDAG.cpp - A Dag to Dag Inst Selector for Mips --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 83 unchanged lines hidden (view full) ---

92 unsigned Opcode = Node->getOpcode();
93
94 // Dump information about the Node being selected
95 DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n");
96
97 // If we have a custom node, we already have selected!
98 if (Node->isMachineOpcode()) {
99 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
100 Node->setNodeId(-1);
100 return NULL;
101 }
102
103 // See if subclasses can handle this node.
104 std::pair<bool, SDNode*> Ret = selectNode(Node);
105
106 if (Ret.first)
107 return Ret.second;

--- 46 unchanged lines hidden ---
101 return NULL;
102 }
103
104 // See if subclasses can handle this node.
105 std::pair<bool, SDNode*> Ret = selectNode(Node);
106
107 if (Ret.first)
108 return Ret.second;

--- 46 unchanged lines hidden ---