[compiler-rt] r205531 - [TSan] Fix a typo ThreadIgnoreSyncEnd. Found by inspection

Alexey Samsonov samsonov at google.com
Thu Apr 3 05:28:16 PDT 2014


Author: samsonov
Date: Thu Apr  3 07:28:16 2014
New Revision: 205531

URL: http://llvm.org/viewvc/llvm-project?rev=205531&view=rev
Log:
[TSan] Fix a typo ThreadIgnoreSyncEnd. Found by inspection

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

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc?rev=205531&r1=205530&r2=205531&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc Thu Apr  3 07:28:16 2014
@@ -765,7 +765,7 @@ void ThreadIgnoreSyncEnd(ThreadState *th
   CHECK_GE(thr->ignore_sync, 0);
 #ifndef TSAN_GO
   if (thr->ignore_sync == 0)
-    thr->mop_ignore_set.Reset();
+    thr->sync_ignore_set.Reset();
 #endif
 }
 





More information about the llvm-commits mailing list