From 68a929a7cac7955747ccc93b855c916a773cadba Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Wed, 8 May 2002 00:42:25 +0000 Subject: [PATCH] Only show the giant-basic-block message at verbosity >= 2. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@230 --- coregrind/vg_to_ucode.c | 2 +- vg_to_ucode.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.2