|
From: <sv...@va...> - 2005-06-30 00:10:20
|
Author: sewardj
Date: 2005-06-30 01:10:16 +0100 (Thu, 30 Jun 2005)
New Revision: 4056
Log:
A couple more XML cases that slipped through the net.
Modified:
trunk/coregrind/m_debuginfo/dwarf.c
trunk/coregrind/m_errormgr.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-06-29 23:38:33 UTC (rev 4055=
)
+++ trunk/coregrind/m_debuginfo/dwarf.c 2005-06-30 00:10:16 UTC (rev 4056=
)
@@ -2486,7 +2486,8 @@
return;
=20
bad:
- VG_(message)(Vg_UserMsg, "Warning: %s in DWARF2 CFI reading", how);
+ if (!VG_(clo_xml))
+ VG_(message)(Vg_UserMsg, "Warning: %s in DWARF2 CFI reading", how=
);
return;
}
=20
Modified: trunk/coregrind/m_errormgr.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_errormgr.c 2005-06-29 23:38:33 UTC (rev 4055)
+++ trunk/coregrind/m_errormgr.c 2005-06-30 00:10:16 UTC (rev 4056)
@@ -465,7 +465,8 @@
pointless to continue the Valgrind run after this point. */
if (VG_(clo_error_limit)=20
&& (n_errs_shown >=3D M_COLLECT_NO_ERRORS_AFTER_SHOWN
- || n_errs_found >=3D M_COLLECT_NO_ERRORS_AFTER_FOUND)) {
+ || n_errs_found >=3D M_COLLECT_NO_ERRORS_AFTER_FOUND)
+ && !VG_(clo_xml)) {
if (!stopping_message) {
VG_(message)(Vg_UserMsg, "");
=20
@@ -498,7 +499,8 @@
/* After M_COLLECT_ERRORS_SLOWLY_AFTER different errors have
been found, be much more conservative about collecting new
ones. */
- if (n_errs_shown >=3D M_COLLECT_ERRORS_SLOWLY_AFTER) {
+ if (n_errs_shown >=3D M_COLLECT_ERRORS_SLOWLY_AFTER
+ && !VG_(clo_xml)) {
exe_res =3D Vg_LowRes;
if (!slowdown_message) {
VG_(message)(Vg_UserMsg, "");
|