Fix debug message.

llvm-svn: 129463
This commit is contained in:
Devang Patel 2011-04-13 19:47:41 +00:00
parent b293311a34
commit 11eaae759b

View File

@ -135,7 +135,9 @@ void DebugInfoProbeImpl::finalize(Function &F) {
E = LineNos.end(); I != E; ++I) {
unsigned LineNo = *I;
if (LineNos2.count(LineNo) == 0) {
DEBUG(dbgs() << "DebugInfoProbe: Losing dbg info intrinsic at line " << LineNo << "\n");
DEBUG(dbgs()
<< "DebugInfoProbe: Losing dbg info for source line "
<< LineNo << "\n");
++NumDbgLineLost;
}
}