Fix debug message.
authorDevang Patel <dpatel@apple.com>
Wed, 13 Apr 2011 19:47:41 +0000 (19:47 +0000)
committerDevang Patel <dpatel@apple.com>
Wed, 13 Apr 2011 19:47:41 +0000 (19:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129463 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/DebugInfoProbe.cpp

index 57d17a67d695595accadc17c7cc48c90c6a22f38..408153f34eb5ad6de471577fbb1c36a37d72835d 100644 (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;
     }
   }