From: Julian Seward Date: Wed, 8 May 2002 00:42:25 +0000 (+0000) Subject: Only show the giant-basic-block message at verbosity >= 2. X-Git-Tag: svn/VALGRIND_1_0_3~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68a929a7cac7955747ccc93b855c916a773cadba;p=thirdparty%2Fvalgrind.git Only show the giant-basic-block message at verbosity >= 2. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@230 --- diff --git a/coregrind/vg_to_ucode.c b/coregrind/vg_to_ucode.c index 607926ed65..892e4368a2 100644 --- a/coregrind/vg_to_ucode.c +++ b/coregrind/vg_to_ucode.c @@ -4554,7 +4554,7 @@ Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 ) /* Split up giant basic blocks into pieces, so the translations fall within 64k. */ if (eip - eip0 > 2000 && !isEnd) { - if (VG_(clo_verbosity) > 0) + if (VG_(clo_verbosity) > 2) VG_(message)(Vg_DebugMsg, "Warning: splitting giant basic block into pieces"); uInstr1(cb, JMP, 0, Literal, 0); diff --git a/vg_to_ucode.c b/vg_to_ucode.c index 607926ed65..892e4368a2 100644 --- a/vg_to_ucode.c +++ b/vg_to_ucode.c @@ -4554,7 +4554,7 @@ Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 ) /* Split up giant basic blocks into pieces, so the translations fall within 64k. */ if (eip - eip0 > 2000 && !isEnd) { - if (VG_(clo_verbosity) > 0) + if (VG_(clo_verbosity) > 2) VG_(message)(Vg_DebugMsg, "Warning: splitting giant basic block into pieces"); uInstr1(cb, JMP, 0, Literal, 0);