[LoopVectorizer] Add support for chaining partial reductions (#120272)
[llvm-project.git] / compiler-rt / lib / scudo / standalone / fuzz / CMakeLists.txt
blobd29c2f2fe749326d2fa68d9cb8a8ed5733a91fb4
1 if (LLVM_USE_SANITIZE_COVERAGE)
2   add_executable(get_error_info_fuzzer
3       get_error_info_fuzzer.cpp)
4   set_target_properties(
5       get_error_info_fuzzer PROPERTIES FOLDER "Fuzzers")
6   target_compile_options(
7       get_error_info_fuzzer PRIVATE -fsanitize=fuzzer)
8   set_target_properties(
9       get_error_info_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
10   target_include_directories(
11       get_error_info_fuzzer PRIVATE .. ../include)
12 endif()