diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-05 16:50:56 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-05 16:50:56 +0000 |
commit | bb7ad98a472e2e6b07d43df08bec687604a27d42 (patch) | |
tree | ac7e1af11ce928c985551570d858867d24ccefe8 /compiler-rt/lib/tsan | |
parent | 673dc3d4a0b0fbb3b9b34ae2ecbfa522627fe582 (diff) | |
download | bcm5719-llvm-bb7ad98a472e2e6b07d43df08bec687604a27d42.tar.gz bcm5719-llvm-bb7ad98a472e2e6b07d43df08bec687604a27d42.zip |
Follow-up for r367863 and r367656
llvm-svn: 367888
Diffstat (limited to 'compiler-rt/lib/tsan')
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp | 2 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp b/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp index 81f1f10a813..9e1b9ed77be 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp +++ b/compiler-rt/lib/tsan/rtl/tsan_interceptors.cpp @@ -1157,7 +1157,7 @@ static int cond_wait(ThreadState *thr, uptr pc, ScopedInterceptor *si, CondMutexUnlockCtx arg = {si, thr, pc, m}; int res = 0; // This ensures that we handle mutex lock even in case of pthread_cancel. - // See test/tsan/cond_cancel.cc. + // See test/tsan/cond_cancel.cpp. { // Enable signal delivery while the thread is blocked. BlockingCall bc(thr); diff --git a/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp b/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp index 87031dd97b9..47b8bf77dca 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp +++ b/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp @@ -650,7 +650,7 @@ void ReportRace(ThreadState *thr) { // and the resulting PC has kExternalPCBit set, so we pass it to // __tsan_symbolize_external_ex. __tsan_symbolize_external_ex is within its // rights to crash since the PC is completely bogus. - // test/tsan/double_race.cc contains a test case for this. + // test/tsan/double_race.cpp contains a test case for this. toppc = 0; } ObtainCurrentStack(thr, toppc, &traces[0], &tags[0]); |