Move the ExeContext stats message earlier, and print it when verbosity == 2,
rather than only when verbosity == 3, as they're only three lines.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3329 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c
index 1793faf..3eca777 100644
--- a/coregrind/vg_main.c
+++ b/coregrind/vg_main.c
@@ -185,6 +185,8 @@
                 "   sanity: %d cheap, %d expensive checks.",
                 sanity_fast_count, sanity_slow_count );
 
+   VG_(print_ExeContext_stats)();
+
    // Memory stats
    if (VG_(clo_verbosity) > 2) {
       VG_(message)(Vg_DebugMsg, "");
@@ -194,10 +196,6 @@
       VG_(print_all_arena_stats)();
       VG_(message)(Vg_DebugMsg, "");
       //VG_(print_shadow_stats)();
-      VG_(message)(Vg_DebugMsg, "");
-      VG_(message)(Vg_DebugMsg, 
-         "------ Valgrind's ExeContext management stats follow ------" );
-      VG_(print_ExeContext_stats)();
    }
 }