diff options
author | Kostya Serebryany <kcc@google.com> | 2016-12-10 02:26:23 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-12-10 02:26:23 +0000 |
commit | 61be0f947d3a141a555c49e8c684d9d9f85a58d1 (patch) | |
tree | cccf30f43e072d564e8444277e95384751119fa9 /llvm/cmake/modules/HandleLLVMOptions.cmake | |
parent | 1394ce2aa2955589a1754cb1f5d5624760d8801f (diff) | |
download | bcm5719-llvm-61be0f947d3a141a555c49e8c684d9d9f85a58d1.tar.gz bcm5719-llvm-61be0f947d3a141a555c49e8c684d9d9f85a58d1.zip |
[libFuzzer] switch all libFuzzer tests to use -fsanitize-coverage=trace-pc-guard. Support for the previosly used instrumentation will be removed in the following changes
llvm-svn: 289311
Diffstat (limited to 'llvm/cmake/modules/HandleLLVMOptions.cmake')
-rw-r--r-- | llvm/cmake/modules/HandleLLVMOptions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake index a2a71f666ea..964fa59c0ba 100644 --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -567,7 +567,7 @@ if(LLVM_USE_SANITIZER) message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.") endif() if (LLVM_USE_SANITIZE_COVERAGE) - append("-fsanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) + append("-fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) endif() endif() |