1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Wrap long line, actually add node to the graph.

llvm-svn: 22011
This commit is contained in:
Chris Lattner 2005-05-14 06:42:57 +00:00
parent 6f7b63c7d7
commit ad411081fb

View File

@ -1463,6 +1463,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode,
if (N) return SDOperand(N, 0);
N = new SDNode(Opcode, Ops);
N->setValueTypes(ResultTys);
AllNodes.push_back(N);
return SDOperand(N, 0);
}
@ -1572,7 +1573,8 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,SDOperand N1,
}
SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,SDOperand N1,
SDOperand N2, SDOperand N3, SDOperand N4, MVT::ValueType EVT) {
SDOperand N2, SDOperand N3, SDOperand N4,
MVT::ValueType EVT) {
switch (Opcode) {
default: assert(0 && "Bad opcode for this accessor!");
case ISD::TRUNCSTORE: