summaryrefslogtreecommitdiff
path: root/lib/fuzzer/FuzzerOptions.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2017-12-08 22:21:42 +0000
committerKostya Serebryany <kcc@google.com>2017-12-08 22:21:42 +0000
commit741ec2c3c00cd768151fc4cfc37d4e4d43c9f58b (patch)
treed65178a2c617e9f00694244196b3a2468cc29fb6 /lib/fuzzer/FuzzerOptions.h
parente192b547369508e2fedc3eab8ac473d3ee158443 (diff)
[libFuzzer] honor -use_counters, sligntly change the meaning of -experimental_len_control, call UpdateFeatureFrequency only if instructed by the flag
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@320205 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fuzzer/FuzzerOptions.h')
-rw-r--r--lib/fuzzer/FuzzerOptions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuzzer/FuzzerOptions.h b/lib/fuzzer/FuzzerOptions.h
index 31e1a4de7..15a378020 100644
--- a/lib/fuzzer/FuzzerOptions.h
+++ b/lib/fuzzer/FuzzerOptions.h
@@ -18,7 +18,7 @@ namespace fuzzer {
struct FuzzingOptions {
int Verbosity = 1;
size_t MaxLen = 0;
- bool ExperimentalLenControl = false;
+ size_t ExperimentalLenControl = 0;
int UnitTimeoutSec = 300;
int TimeoutExitCode = 77;
int ErrorExitCode = 77;