diff options
| author | Eric Christopher <echristo@gmail.com> | 2012-10-08 20:48:49 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2012-10-08 20:48:49 +0000 |
| commit | 85a495e9a70b5bccb2d56b2f7e615afad0cf9881 (patch) | |
| tree | eac5a1509908bed3a22008cb2a08adeae7ed864c /llvm/lib | |
| parent | 6b108a617d2cd830a609d4527aeb42b7fd21abef (diff) | |
| download | bcm5719-llvm-85a495e9a70b5bccb2d56b2f7e615afad0cf9881.tar.gz bcm5719-llvm-85a495e9a70b5bccb2d56b2f7e615afad0cf9881.zip | |
Fixup comments.
llvm-svn: 165426
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 1339f2b4cb7..9882faad1f6 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1322,7 +1322,7 @@ void DwarfDebug::beginFunction(const MachineFunction *MF) { // Coalesce identical entries at the end of History. if (History.size() >= 2 && Prev->isIdenticalTo(History[History.size() - 2])) { - DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n" + DEBUG(dbgs() << "Coalescing identical DBG_VALUE entries:\n" << "\t" << *Prev << "\t" << *History[History.size() - 2] << "\n"); History.pop_back(); @@ -1338,7 +1338,7 @@ void DwarfDebug::beginFunction(const MachineFunction *MF) { PrevMBB->getLastNonDebugInstr(); if (LastMI == PrevMBB->end()) { // Drop DBG_VALUE for empty range. - DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n" + DEBUG(dbgs() << "Dropping DBG_VALUE for empty range:\n" << "\t" << *Prev << "\n"); History.pop_back(); } |

