|
From: <sv...@va...> - 2005-08-01 14:12:26
|
Author: sewardj
Date: 2005-08-01 15:12:17 +0100 (Mon, 01 Aug 2005)
New Revision: 4299
Log:
Don't show CFI reader warnings without -v. This is intended to hide
Warning: zero-sized CIE/FDE but not at section end in DWARF2 CFI readin=
g
which I know is not a good fix, but I don't want to get into messing
with the CFI reader this close to 3.0, and the appearance of this
message causes many regtests to fail on some systems.
Modified:
trunk/coregrind/m_debuginfo/dwarf.c
Modified: trunk/coregrind/m_debuginfo/dwarf.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_debuginfo/dwarf.c 2005-08-01 13:40:08 UTC (rev 4298=
)
+++ trunk/coregrind/m_debuginfo/dwarf.c 2005-08-01 14:12:17 UTC (rev 4299=
)
@@ -2486,7 +2486,7 @@
return;
=20
bad:
- if (!VG_(clo_xml))
+ if (!VG_(clo_xml) && VG_(clo_verbosity) > 1)
VG_(message)(Vg_UserMsg, "Warning: %s in DWARF2 CFI reading", how=
);
return;
}
|