summaryrefslogtreecommitdiffstats
path: root/lib/Fuzzer
diff options
context:
space:
mode:
authorGeorge Karpenkov <ekarpenkov@apple.com>2017-06-14 23:40:25 +0000
committerGeorge Karpenkov <ekarpenkov@apple.com>2017-06-14 23:40:25 +0000
commit4cbdf0eab210f85fe1c54e104f0543783dd4cab2 (patch)
tree71f6d678d1e17f07a3d63e6532d47053629441a5 /lib/Fuzzer
parentff3e8e2cee5c07211319b17d4710aada20ff5251 (diff)
Fixing section name for Darwin platforms for sanitizer coverage
On Darwin, section names have a 16char length limit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Fuzzer')
-rw-r--r--lib/Fuzzer/test/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Fuzzer/test/CMakeLists.txt b/lib/Fuzzer/test/CMakeLists.txt
index bb9406297da8..1cf6c9502a2b 100644
--- a/lib/Fuzzer/test/CMakeLists.txt
+++ b/lib/Fuzzer/test/CMakeLists.txt
@@ -206,7 +206,7 @@ include_directories(..)
add_subdirectory(no-coverage)
add_subdirectory(trace-pc)
add_subdirectory(ubsan)
-if (NOT APPLE AND NOT MSVC)
+if (NOT MSVC)
add_subdirectory(inline-8bit-counters)
endif()