diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-30 01:24:57 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-30 01:24:57 +0000 |
commit | b3949ef88534b0f87d1cd675adf6582dfbf6cae5 (patch) | |
tree | df0530c32b7ddc88c2670338367528ee90beed08 /llvm/lib/Fuzzer/FuzzerExtFunctions.def | |
parent | 190947e9685339abcaba2aa6435313e87dad16c0 (diff) | |
download | bcm5719-llvm-b3949ef88534b0f87d1cd675adf6582dfbf6cae5.tar.gz bcm5719-llvm-b3949ef88534b0f87d1cd675adf6582dfbf6cae5.zip |
[libFuzzer] remove the code for -print_pcs=1 with the old coverage. It still works with the new one (trace-pc-guard)
llvm-svn: 282831
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerExtFunctions.def')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerExtFunctions.def | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerExtFunctions.def b/llvm/lib/Fuzzer/FuzzerExtFunctions.def index e5cb3a7d9bb..b34670f85b4 100644 --- a/llvm/lib/Fuzzer/FuzzerExtFunctions.def +++ b/llvm/lib/Fuzzer/FuzzerExtFunctions.def @@ -29,8 +29,6 @@ EXT_FUNC(LLVMFuzzerCustomCrossOver, size_t, EXT_FUNC(__lsan_enable, void, (), false); EXT_FUNC(__lsan_disable, void, (), false); EXT_FUNC(__lsan_do_recoverable_leak_check, int, (), false); -EXT_FUNC(__sanitizer_set_coverage_pc_buffer, void, (uintptr_t*, uintptr_t), false); -EXT_FUNC(__sanitizer_get_coverage_pc_buffer_pos, uintptr_t, (), false); EXT_FUNC(__sanitizer_get_number_of_counters, size_t, (), false); EXT_FUNC(__sanitizer_install_malloc_and_free_hooks, int, (void (*malloc_hook)(const volatile void *, size_t), |