From: Julian Seward Date: Wed, 1 May 2002 02:32:10 +0000 (+0000) Subject: Don't want to see these guys with just -v. There get to be bazillions X-Git-Tag: svn/VALGRIND_1_0_3~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55019fd863cb23e9be3a2a08b0448f76078cfe59;p=thirdparty%2Fvalgrind.git Don't want to see these guys with just -v. There get to be bazillions of them after a while. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@184 --- diff --git a/cachegrind/cg_main.c b/cachegrind/cg_main.c index 43e100cb94..2cc30f855f 100644 --- a/cachegrind/cg_main.c +++ b/cachegrind/cg_main.c @@ -345,8 +345,9 @@ static __inline__ BBCC* get_BBCC(Addr bb_orig_addr, UCodeBlock* cb, } else { vg_assert(bb_orig_addr == curr_BBCC->orig_addr); vg_assert(curr_BBCC->array_size > 0 && curr_BBCC->array_size < 1000000); - if (VG_(clo_verbosity) > 1) { - VG_(message)(Vg_DebugMsg, "BB retranslation, retrieving from BBCC table"); + if (VG_(clo_verbosity) > 2) { + VG_(message)(Vg_DebugMsg, + "BB retranslation, retrieving from BBCC table"); } *BB_seen_before = True; BB_retranslations++; diff --git a/vg_cachesim.c b/vg_cachesim.c index 43e100cb94..2cc30f855f 100644 --- a/vg_cachesim.c +++ b/vg_cachesim.c @@ -345,8 +345,9 @@ static __inline__ BBCC* get_BBCC(Addr bb_orig_addr, UCodeBlock* cb, } else { vg_assert(bb_orig_addr == curr_BBCC->orig_addr); vg_assert(curr_BBCC->array_size > 0 && curr_BBCC->array_size < 1000000); - if (VG_(clo_verbosity) > 1) { - VG_(message)(Vg_DebugMsg, "BB retranslation, retrieving from BBCC table"); + if (VG_(clo_verbosity) > 2) { + VG_(message)(Vg_DebugMsg, + "BB retranslation, retrieving from BBCC table"); } *BB_seen_before = True; BB_retranslations++;