Changes in directory llvm/lib/CodeGen/SelectionDAG:
LegalizeDAG.cpp updated: 1.494 -> 1.495 --- Log message: Pass the DAG to SDNode::dump to let it do more detailed dumps in some cases. --- Diffs of the changes: (+5 -5) LegalizeDAG.cpp | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.494 llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.495 --- llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.494 Fri May 18 12:52:13 2007 +++ llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Mon Jun 4 11:17:33 2007 @@ -648,7 +648,7 @@ } // Otherwise this is an unhandled builtin node. splat. #ifndef NDEBUG - cerr << "NODE: "; Node->dump(); cerr << "\n"; + cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; #endif assert(0 && "Do not know how to legalize this operator!"); abort(); @@ -3181,7 +3181,7 @@ assert(0 && "CopyFromReg must be legal!"); default: #ifndef NDEBUG - cerr << "NODE: "; Node->dump(); cerr << "\n"; + cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; #endif assert(0 && "Do not know how to promote this operator!"); abort(); @@ -4721,7 +4721,7 @@ assert(0 && "CopyFromReg must be legal!"); default: #ifndef NDEBUG - cerr << "NODE: "; Node->dump(); cerr << "\n"; + cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; #endif assert(0 && "Do not know how to expand this operator!"); abort(); @@ -5484,7 +5484,7 @@ switch (Node->getOpcode()) { default: #ifndef NDEBUG - Node->dump(); + Node->dump(&DAG); #endif assert(0 && "Unhandled operation in SplitVectorOp!"); case ISD::VBUILD_VECTOR: { @@ -5606,7 +5606,7 @@ switch (Node->getOpcode()) { default: #ifndef NDEBUG - Node->dump(); cerr << "\n"; + Node->dump(&DAG); cerr << "\n"; #endif assert(0 && "Unknown vector operation in PackVectorOp!"); case ISD::VADD: _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits