|
From: <sv...@va...> - 2005-09-24 18:57:40
|
Author: njn
Date: 2005-09-24 19:57:38 +0100 (Sat, 24 Sep 2005)
New Revision: 4748
Log:
Move verbosity message printing in with the rest of the preamble printing=
.
Modified:
branches/ASPACEM/coregrind/m_main.c
Modified: branches/ASPACEM/coregrind/m_main.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
--- branches/ASPACEM/coregrind/m_main.c 2005-09-24 18:18:32 UTC (rev 4747=
)
+++ branches/ASPACEM/coregrind/m_main.c 2005-09-24 18:57:38 UTC (rev 4748=
)
@@ -1513,6 +1513,9 @@
"%sCopyright (C) 2000-2005, and GNU GPL'd, by Julian Seward et =
al.%s",
xpre, xpost );
=20
+ if (VG_(clo_verbosity) =3D=3D 1 && !VG_(clo_xml))
+ VG_(message)(Vg_UserMsg, "For more details, rerun with: -v");
+
if (VG_(clo_xml))
VG_(message)(Vg_UserMsg, "</preamble>");
}
@@ -1579,6 +1582,10 @@
VG_(message)(Vg_UserMsg, "</args>");
}
=20
+ // Empty line after the preamble
+ if (VG_(clo_verbosity) > 0)
+ VG_(message)(Vg_UserMsg, "");
+
if (VG_(clo_verbosity) > 1) {
SysRes fd;
if (log_to !=3D VgLogTo_Fd)
@@ -2386,15 +2393,6 @@
}
=20
//--------------------------------------------------------------
- // Verbosity message
- // p: end_rdtsc_calibration [so startup message is printed first]
- //--------------------------------------------------------------
- if (VG_(clo_verbosity) =3D=3D 1 && !VG_(clo_xml))
- VG_(message)(Vg_UserMsg, "For more details, rerun with: -v");
- if (VG_(clo_verbosity) > 0)
- VG_(message)(Vg_UserMsg, "");
-
- //--------------------------------------------------------------
// Setup pointercheck
// p: layout_remaining_space() [for VG_(client_{base,end})]
// p: process_cmd_line_options() [for VG_(clo_pointercheck)]
|