]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Only show the giant-basic-block message at verbosity >= 2.
authorJulian Seward <jseward@acm.org>
Wed, 8 May 2002 00:42:25 +0000 (00:42 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 8 May 2002 00:42:25 +0000 (00:42 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@230

coregrind/vg_to_ucode.c
vg_to_ucode.c

index 607926ed652f95670e675e2c7f2df3cc81b7b735..892e4368a225e9c20a4e6412125daa25bfe2a77b 100644 (file)
@@ -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);
index 607926ed652f95670e675e2c7f2df3cc81b7b735..892e4368a225e9c20a4e6412125daa25bfe2a77b 100644 (file)
@@ -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);