diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp index a035c180f8f..ec56feaff96 100644 --- a/lib/CodeGen/PostRASchedulerList.cpp +++ b/lib/CodeGen/PostRASchedulerList.cpp @@ -428,9 +428,10 @@ bool SchedulePostRATDList::BreakAntiDependencies() { "Kill and Def maps aren't consistent for NewReg!"); if (KillIndices[NewReg] == -1u && KillIndices[AntiDepReg] <= DefIndices[NewReg]) { - DOUT << "Breaking anti-dependence edge on reg " << AntiDepReg + DOUT << "Breaking anti-dependence edge on " + << TRI->getName(AntiDepReg) << " with " << RegRefs.count(AntiDepReg) << " references" - << " with new reg " << NewReg << "!\n"; + << " using " << TRI->getName(NewReg) << "!\n"; // Update the references to the old register to refer to the new // register.