diff options
| author | Alexey Samsonov <samsonov@google.com> | 2014-04-03 12:28:16 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2014-04-03 12:28:16 +0000 |
| commit | b4525218d41543f7bdc931ed08fe6168cc3f7a0b (patch) | |
| tree | 0dca48076a6ee429b735264ac7c88b9739ecf269 /compiler-rt | |
| parent | f7b32291ad511d48729cf5389bb9b5804b62938f (diff) | |
| download | bcm5719-llvm-b4525218d41543f7bdc931ed08fe6168cc3f7a0b.tar.gz bcm5719-llvm-b4525218d41543f7bdc931ed08fe6168cc3f7a0b.zip | |
[TSan] Fix a typo ThreadIgnoreSyncEnd. Found by inspection
llvm-svn: 205531
Diffstat (limited to 'compiler-rt')
| -rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_rtl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_rtl.cc b/compiler-rt/lib/tsan/rtl/tsan_rtl.cc index 26f61023e0e..f9d21574eb3 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_rtl.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_rtl.cc @@ -765,7 +765,7 @@ void ThreadIgnoreSyncEnd(ThreadState *thr, uptr pc) { 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 } |

