summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/scripts
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2019-08-01 14:01:30 +0000
committerNico Weber <nicolasweber@gmx.de>2019-08-01 14:01:30 +0000
commit6efaee2d8ab1b4eca5f64ef86530dff2ae0b6d7f (patch)
tree4fb15c559cb80f9de32bc129a5f3802b5a0c511a /lib/sanitizer_common/scripts
parent5e3e44df1746f02fff693edeee2c0c91e2cd9874 (diff)
downloadcompiler-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-xlib/sanitizer_common/scripts/check_lint.sh2
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 &