|
From: <sv...@va...> - 2015-05-03 10:56:24
|
Author: philippe
Date: Sun May 3 11:56:16 2015
New Revision: 15176
Log:
Reduce nr of lines produced by laog gc --stats=yes
Modified:
trunk/helgrind/hg_main.c
Modified: trunk/helgrind/hg_main.c
==============================================================================
--- trunk/helgrind/hg_main.c (original)
+++ trunk/helgrind/hg_main.c Sun May 3 11:56:16 2015
@@ -3420,11 +3420,6 @@
* sizeof(Bool) );
// univ_laog_seen[*] set to 0 (False) by zalloc.
- if (VG_(clo_stats))
- VG_(message)(Vg_DebugMsg,
- "univ_laog_do_GC enter cardinality %'10d\n",
- (Int)univ_laog_cardinality);
-
VG_(initIterFM)( laog );
links = NULL;
while (VG_(nextIterFM)( laog, NULL, (UWord*)&links )) {
@@ -3482,8 +3477,8 @@
if (VG_(clo_stats))
VG_(message)
(Vg_DebugMsg,
- "univ_laog_do_GC exit seen %'8d next gc at cardinality %'10d\n",
- (Int)seen, next_gc_univ_laog);
+ "univ_laog_do_GC cardinality entered %d exit %d next gc at %d\n",
+ (Int)univ_laog_cardinality, (Int)seen, next_gc_univ_laog);
}
|