|
From: <sv...@va...> - 2015-04-19 17:56:50
|
Author: philippe
Date: Sun Apr 19 18:56:42 2015
New Revision: 15114
Log:
Ensure we print the memory statistics with the default verbosity,
when giving --stats=yes
Modified:
trunk/coregrind/m_main.c
Modified: trunk/coregrind/m_main.c
==============================================================================
--- trunk/coregrind/m_main.c (original)
+++ trunk/coregrind/m_main.c Sun Apr 19 18:56:42 2015
@@ -2628,7 +2628,7 @@
VG_(sanity_check_general)( True /*include expensive checks*/ );
if (VG_(clo_stats))
- VG_(print_all_stats)(VG_(clo_verbosity) > 2, /* Memory stats */
+ VG_(print_all_stats)(VG_(clo_verbosity) >= 1, /* Memory stats */
False /* tool prints stats in the tool fini */);
/* Show a profile of the heap(s) at shutdown. Optionally, first
|