|
From: Tom H. <th...@cy...> - 2004-11-01 17:37:11
|
CVS commit by thughes:
Make sure source-location mapping entries of size zero are converted
to size one even if verbose more is off.
MERGE TO STABLE
M +6 -4 vg_symtab2.c 1.85.2.2
--- valgrind/coregrind/vg_symtab2.c #1.85.2.1:1.85.2.2
@@ -216,8 +216,10 @@ void VG_(addLineInfo) ( SegInfo* si,
* multiple instructions can map to the one line), but avoid
* catching any other instructions bogusly. */
- if (this > next && VG_(clo_verbosity) > 2) {
+ if (this > next) {
+ if (VG_(clo_verbosity) > 2) {
VG_(message)(Vg_DebugMsg,
"warning: line info addresses out of order "
"at entry %d: 0x%x 0x%x", entry, this, next);
+ }
size = 1;
}
|