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 | |
| 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')
4 files changed, 4 insertions, 4 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]); diff --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/ill.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/ill.cpp index bbde13b5675..fb9133ee80d 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Linux/ill.cpp +++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/ill.cpp @@ -22,6 +22,6 @@ int main(int argc, char **argv) { // CHECK0-NOT: Sanitizer:DEADLYSIGNAL // CHECK1: ERROR: {{.*}}Sanitizer: ILL -// CHECK1: {{#[0-9]+.* main .*ill\.cc:[0-9]+}} +// CHECK1: {{#[0-9]+.* main .*ill\.cpp:[0-9]+}} // CHECK1: DEATH CALLBACK // CHECK0-NOT: Sanitizer diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/fpe.cpp b/compiler-rt/test/sanitizer_common/TestCases/Posix/fpe.cpp index c1e785a7ae8..8797c30af58 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/fpe.cpp +++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/fpe.cpp @@ -24,6 +24,6 @@ int main(int argc, char **argv) { // CHECK0-NOT: Sanitizer:DEADLYSIGNAL // CHECK1: ERROR: {{.*}}Sanitizer: FPE -// CHECK1: {{#[0-9]+.* main .*fpe\.cc}}:[[@LINE-5]] +// CHECK1: {{#[0-9]+.* main .*fpe\.cpp}}:[[@LINE-5]] // CHECK1: DEATH CALLBACK // CHECK0-NOT: Sanitizer |

