]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Disabled a tl_assert() statement.
authorBart Van Assche <bvanassche@acm.org>
Tue, 21 Jul 2009 15:20:21 +0000 (15:20 +0000)
committerBart Van Assche <bvanassche@acm.org>
Tue, 21 Jul 2009 15:20:21 +0000 (15:20 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10507

drd/drd_suppression.c

index da01f15996a56e4aa4e47dade043809d7dd2890a..8261ce08e559d7029e14a721f76c9e43c294e431 100644 (file)
@@ -80,12 +80,14 @@ void DRD_(finish_suppression)(const Addr a1, const Addr a2)
    }
 
    tl_assert(a1 < a2);
+#if 0
    if (! DRD_(is_suppressed)(a1, a2))
    {
       VG_(message)(Vg_DebugMsg, "?? [0x%lx,0x%lx[ not suppressed ??\n", a1, a2);
       VG_(get_and_pp_StackTrace)(VG_(get_running_tid)(), 12);
       tl_assert(False);
    }
+#endif
    DRD_(bm_clear_store)(DRD_(s_suppressed), a1, a2);
 }