|
From: <sv...@va...> - 2010-02-15 10:05:47
|
Author: sewardj
Date: 2010-02-15 10:05:40 +0000 (Mon, 15 Feb 2010)
New Revision: 11045
Log:
Make -v messages w.r.t. finding of auxiliary debuginfo files less confusing.
Modified:
trunk/coregrind/m_debuginfo/readelf.c
Modified: trunk/coregrind/m_debuginfo/readelf.c
===================================================================
--- trunk/coregrind/m_debuginfo/readelf.c 2010-02-15 10:04:46 UTC (rev 11044)
+++ trunk/coregrind/m_debuginfo/readelf.c 2010-02-15 10:05:40 UTC (rev 11045)
@@ -942,7 +942,7 @@
}
if (VG_(clo_verbosity) > 1)
- VG_(message)(Vg_DebugMsg, "Reading debug info from %s ..\n", name);
+ VG_(message)(Vg_DebugMsg, " Considering %s ..\n", name);
*size = stat_buf.size;
@@ -960,9 +960,12 @@
vg_assert(!sr_isError(res));
if (VG_(clo_verbosity) > 1)
VG_(message)(Vg_DebugMsg,
- ".. CRC mismatch (computed %08x wanted %08x)\n", calccrc, crc);
+ " .. CRC mismatch (computed %08x wanted %08x)\n", calccrc, crc);
return 0;
}
+
+ VG_(message)(Vg_DebugMsg,
+ " .. CRC is valid\n");
return sr_Res(sres);
}
|