diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-17 06:38:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-17 06:38:37 +0000 |
commit | 95ad943ed5b2212652b40ebcbb675fde67dc474a (patch) | |
tree | bd3aebb8051139172ae11c8ed0a480dec0ef02bf /lib/CodeGen | |
parent | 9ff6ee85fe281c5686e0885eaa0c37ad5378ed52 (diff) |
print target nodes nicely
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34369 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp index 9daf18150b..ca256deeaf 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp @@ -307,7 +307,7 @@ void ScheduleDAG::AddOperand(MachineInstr *MI, SDOperand Op, cerr << "Register class of operand and regclass of use don't agree!\n"; #ifndef NDEBUG cerr << "Operand = " << IIOpNum << "\n"; - cerr << "Op->Val = "; Op.Val->dump(0); cerr << "\n"; + cerr << "Op->Val = "; Op.Val->dump(&DAG); cerr << "\n"; cerr << "MI = "; MI->print(cerr); cerr << "VReg = " << VReg << "\n"; cerr << "VReg RegClass size = " << VRC->getSize() |