[llvm-commits] [compiler-rt] r169494 - /compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc

Dmitry Vyukov dvyukov at google.com
Thu Dec 6 04:42:53 PST 2012


Author: dvyukov
Date: Thu Dec  6 06:42:53 2012
New Revision: 169494

URL: http://llvm.org/viewvc/llvm-project?rev=169494&view=rev
Log:
tsan: add 'free' to java nonsense reports

Modified:
    compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc?rev=169494&r1=169493&r2=169494&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc Thu Dec  6 06:42:53 2012
@@ -461,6 +461,7 @@
         || internal_strcmp(frame->func, "memcpy") == 0
         || internal_strcmp(frame->func, "strcmp") == 0
         || internal_strcmp(frame->func, "strncpy") == 0
+        || internal_strcmp(frame->func, "free") == 0
         || internal_strcmp(frame->func, "pthread_mutex_lock") == 0)) {
       frame = frame->next;
       if (frame == 0





More information about the llvm-commits mailing list