From: Dan Gohman Date: Thu, 4 Dec 2008 02:14:57 +0000 (+0000) Subject: Make debug output more informative. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b29ffc88701fc373c832ea2e7142ad6f72eef050;p=oota-llvm.git Make debug output more informative. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60524 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 5cbffc7c26c..02cc2855d0e 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -1300,7 +1300,7 @@ void RegReductionPriorityQueue::AddPseudoTwoAddrDeps() { (hasCopyToRegUse(SU) && !hasCopyToRegUse(SuccSU)) || (!SU->isCommutable && SuccSU->isCommutable)) && !scheduleDAG->IsReachable(SuccSU, SU)) { - DOUT << "Adding an edge from SU # " << SU->NodeNum + DOUT << "Adding a pseudo-two-addr edge from SU # " << SU->NodeNum << " to SU #" << SuccSU->NodeNum << "\n"; scheduleDAG->AddPred(SU, SuccSU, true, true); }