Fix debug message.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2011-04-13 19:47:41 +00:00
parent 9bb386a933
commit be7cd7580d

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;
}
}