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/FuzzerInternal.h | |
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/FuzzerInternal.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerInternal.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h index 49f6a6a7cf3..cbbae0af151 100644 --- a/llvm/lib/Fuzzer/FuzzerInternal.h +++ b/llvm/lib/Fuzzer/FuzzerInternal.h @@ -118,8 +118,6 @@ private: void AddToCorpusAndMaybeRerun(const Unit &U); void CheckExitOnSrcPos(); - bool UpdateMaxCoverage(); - // Trace-based fuzzing: we run a unit with some kind of tracing // enabled and record potentially useful mutations. Then // We apply these mutations one by one to the unit and run it again. @@ -166,11 +164,6 @@ private: size_t MaxInputLen = 0; size_t MaxMutationLen = 0; - // For -print_pcs - uintptr_t* PcBuffer = nullptr; - size_t PcBufferLen = 0; - size_t PcBufferPos = 0, PrevPcBufferPos = 0; - // Need to know our own thread. static thread_local bool IsMyThread; |