summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Liew <dan@su-root.co.uk>2018-07-12 20:55:02 +0000
committerDan Liew <dan@su-root.co.uk>2018-07-12 20:55:02 +0000
commit2f2ebb2f33703b5651bc87fb7f95afecc599ea8d (patch)
tree8c6177f456255c0329531061fb4dd51bb77f3651 /lib
parent0dafade8b6af4dbb9ad5bb37aee7f1379d779455 (diff)
[CMake] Fix a typo in the variable used to retrieve source file names
for the `RTHwasan_dynamic` target. Differential Revision: https://reviews.llvm.org/D49178 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@336944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/hwasan/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/hwasan/CMakeLists.txt b/lib/hwasan/CMakeLists.txt
index ca53890d1..17a8e907b 100644
--- a/lib/hwasan/CMakeLists.txt
+++ b/lib/hwasan/CMakeLists.txt
@@ -78,8 +78,7 @@ add_compiler_rt_object_libraries(RTHwasan_cxx
CFLAGS ${HWASAN_RTL_CFLAGS})
add_compiler_rt_object_libraries(RTHwasan_dynamic
ARCHS ${HWASAN_SUPPORTED_ARCH}
- # FIXME: Typo? Probably should be HWASAN_RTL_CXX_SOURCES
- SOURCES ${HWASAN_RTL_SOURCES} ${TSAN_RTL_CXX_SOURCES}
+ SOURCES ${HWASAN_RTL_SOURCES} ${HWASAN_RTL_CXX_SOURCES}
ADDITIONAL_HEADERS ${HWASAN_RTL_HEADERS}
CFLAGS ${HWASAN_DYNAMIC_CFLAGS})