From: Devang Patel Date: Wed, 13 Apr 2011 19:47:41 +0000 (+0000) Subject: Fix debug message. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=be7cd7580dc704e3058b874d7573305bd7def9ea;p=oota-llvm.git Fix debug message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129463 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/DebugInfoProbe.cpp b/lib/VMCore/DebugInfoProbe.cpp index 57d17a67d69..408153f34eb 100644 --- a/lib/VMCore/DebugInfoProbe.cpp +++ b/lib/VMCore/DebugInfoProbe.cpp @@ -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; } }