[compiler-rt] r184963 - [tsan] Fix build.
Sergey Matveev
earthdok at google.com
Wed Jun 26 09:49:34 PDT 2013
Author: smatveev
Date: Wed Jun 26 11:49:34 2013
New Revision: 184963
URL: http://llvm.org/viewvc/llvm-project?rev=184963&view=rev
Log:
[tsan] Fix build.
Modified:
compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc
Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc?rev=184963&r1=184962&r2=184963&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc Wed Jun 26 11:49:34 2013
@@ -126,7 +126,7 @@ uptr IsSuppressed(ReportType typ, const
if (g_ctx->Match(loc->name, stype, &s) ||
g_ctx->Match(loc->file, stype, &s) ||
g_ctx->Match(loc->module, stype, &s)) {
- DPrintf("ThreadSanitizer: matched suppression '%s'\n", templ);
+ DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
s->hit_count++;
*sp = s;
return loc->addr;
More information about the llvm-commits
mailing list