diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/CodeGen/ScheduleDAG.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAG.cpp b/llvm/lib/CodeGen/ScheduleDAG.cpp index 45b4f68570b..0c40e2bf53d 100644 --- a/llvm/lib/CodeGen/ScheduleDAG.cpp +++ b/llvm/lib/CodeGen/ScheduleDAG.cpp @@ -329,8 +329,8 @@ void SUnit::dumpAll(const ScheduleDAG *G) const {      dbgs() << "  # weak succs left  : " << WeakSuccsLeft << "\n";    dbgs() << "  # rdefs left       : " << NumRegDefsLeft << "\n";    dbgs() << "  Latency            : " << Latency << "\n"; -  dbgs() << "  Depth              : " << Depth << "\n"; -  dbgs() << "  Height             : " << Height << "\n"; +  dbgs() << "  Depth              : " << getDepth() << "\n"; +  dbgs() << "  Height             : " << getHeight() << "\n";    if (Preds.size() != 0) {      dbgs() << "  Predecessors:\n";  | 

