diff options
| -rw-r--r-- | compiler-rt/lib/tsan/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_libdispatch_interceptors.cpp (renamed from compiler-rt/lib/tsan/rtl/tsan_libdispatch.cpp) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/CMakeLists.txt b/compiler-rt/lib/tsan/CMakeLists.txt index ffbe62aa93a..f4bd2dce732 100644 --- a/compiler-rt/lib/tsan/CMakeLists.txt +++ b/compiler-rt/lib/tsan/CMakeLists.txt @@ -76,7 +76,7 @@ endif() if(COMPILER_RT_INTERCEPT_LIBDISPATCH) list(APPEND TSAN_SOURCES - rtl/tsan_libdispatch.cpp + rtl/tsan_libdispatch_interceptors.cpp ) list(APPEND TSAN_RTL_CFLAGS ${COMPILER_RT_LIBDISPATCH_CFLAGS}) endif() diff --git a/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cpp b/compiler-rt/lib/tsan/rtl/tsan_libdispatch_interceptors.cpp index ac654d16edd..5431d7fa53d 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cpp +++ b/compiler-rt/lib/tsan/rtl/tsan_libdispatch_interceptors.cpp @@ -1,4 +1,4 @@ -//===-- tsan_libdispatch.cpp ----------------------------------------------===// +//===-- tsan_libdispatch_interceptors.cpp ---------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. |

