aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-10-14 08:34:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-10-14 08:34:06 +0000
commitd42a5238a967c9cdfec8fe086bd18876bff5a951 (patch)
treea572b25fe5aac4396af5d84e1d6cd061d61bccc5 /lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
parent27e1fe9dab89388dfcb3985128d000e632fdc5f6 (diff)
Debug tweak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
index 947504af2a..ad9bfefd2f 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
@@ -656,7 +656,7 @@ void SUnit::dumpAll(const SelectionDAG *G) const {
std::cerr << " ch #";
else
std::cerr << " val #";
- std::cerr << I->first << "\n";
+ std::cerr << I->first << " - SU(" << I->first->NodeNum << ")\n";
}
}
if (Succs.size() != 0) {
@@ -667,7 +667,7 @@ void SUnit::dumpAll(const SelectionDAG *G) const {
std::cerr << " ch #";
else
std::cerr << " val #";
- std::cerr << I->first << "\n";
+ std::cerr << I->first << " - SU(" << I->first->NodeNum << ")\n";
}
}
std::cerr << "\n";