diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-01 14:01:30 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-01 14:01:30 +0000 |
commit | 6efaee2d8ab1b4eca5f64ef86530dff2ae0b6d7f (patch) | |
tree | 4fb15c559cb80f9de32bc129a5f3802b5a0c511a /lib/sanitizer_common/scripts | |
parent | 5e3e44df1746f02fff693edeee2c0c91e2cd9874 (diff) | |
download | compiler-rt-6efaee2d8ab1b4eca5f64ef86530dff2ae0b6d7f.tar.gz |
compiler-rt: Rename .cc file in lib/lsan to .cpp
Like r367463, but for lsan.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@367561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/scripts')
-rwxr-xr-x | lib/sanitizer_common/scripts/check_lint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sanitizer_common/scripts/check_lint.sh b/lib/sanitizer_common/scripts/check_lint.sh index db3758ee5..e616725ec 100755 --- a/lib/sanitizer_common/scripts/check_lint.sh +++ b/lib/sanitizer_common/scripts/check_lint.sh @@ -103,7 +103,7 @@ run_lint ${MSAN_RTL_LINT_FILTER} ${MSAN_RTL}/*.cc \ # LSan LSAN_RTL=${COMPILER_RT}/lib/lsan -run_lint ${LSAN_RTL_LINT_FILTER} ${LSAN_RTL}/*.cc \ +run_lint ${LSAN_RTL_LINT_FILTER} ${LSAN_RTL}/*.cpp \ ${LSAN_RTL}/*.h & run_lint ${LSAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/lsan/*/*.cc & |