From: Philippe Waroquiers Date: Sun, 3 May 2015 10:56:16 +0000 (+0000) Subject: Reduce nr of lines produced by laog gc --stats=yes X-Git-Tag: svn/VALGRIND_3_11_0~433 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9655203ffb1faf587466530fd1e363e768f21e2a;p=thirdparty%2Fvalgrind.git Reduce nr of lines produced by laog gc --stats=yes git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15176 --- diff --git a/helgrind/hg_main.c b/helgrind/hg_main.c index e1e7b87786..07c4496735 100644 --- a/helgrind/hg_main.c +++ b/helgrind/hg_main.c @@ -3420,11 +3420,6 @@ static void univ_laog_do_GC ( void ) { * 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 @@ static void univ_laog_do_GC ( void ) { 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); }