]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Quiet an overly noisy message.
authorJeremy Fitzhardinge <jeremy@valgrind.org>
Wed, 14 Apr 2004 07:22:00 +0000 (07:22 +0000)
committerJeremy Fitzhardinge <jeremy@valgrind.org>
Wed, 14 Apr 2004 07:22:00 +0000 (07:22 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2363

coregrind/vg_symtab2.c

index 634f1fc8a7df8af11635ee96ff6b22ed34f14fcc..5673e580a745ecff8f5741248a7fe91979285d61 100644 (file)
@@ -213,7 +213,7 @@ void VG_(addLineInfo) ( SegInfo* si,
     * correspond to one line, unlike with C-level debug info where
     * multiple instructions can map to the one line), but avoid
     * catching any other instructions bogusly. */
-   if (this > next) {
+   if (this > next && VG_(clo_verbosity) > 2) {
        VG_(message)(Vg_DebugMsg, 
                     "warning: line info addresses out of order "
                     "at entry %d: 0x%x 0x%x", entry, this, next);