diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-28 09:57:41 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-07-28 09:59:32 +0200 |
commit | 52526065bc808e52d0803b28aa24c0bb7ae70d87 (patch) | |
tree | 121c816f3dc609a71e6b5033ce69d94d7ac31ef1 | |
parent | 8c0acbf8370f29943798cd434cd0b91bbd554cdf (diff) | |
download | llvm-52526065bc808e52d0803b28aa24c0bb7ae70d87.zip llvm-52526065bc808e52d0803b28aa24c0bb7ae70d87.tar.gz llvm-52526065bc808e52d0803b28aa24c0bb7ae70d87.tar.bz2 |
[NFC][compiler-rt] Add missing space in libfuzzer -help docs
-rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerFlags.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerFlags.def b/compiler-rt/lib/fuzzer/FuzzerFlags.def index 1181534..fc3b3aa 100644 --- a/compiler-rt/lib/fuzzer/FuzzerFlags.def +++ b/compiler-rt/lib/fuzzer/FuzzerFlags.def @@ -167,7 +167,7 @@ FUZZER_FLAG_INT(purge_allocator_interval, 1, "Purge allocator caches and " "purge_allocator_interval=-1 to disable this functionality.") FUZZER_FLAG_INT(trace_malloc, 0, "If >= 1 will print all mallocs/frees. " "If >= 2 will also print stack traces.") -FUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon" +FUZZER_FLAG_INT(rss_limit_mb, 2048, "If non-zero, the fuzzer will exit upon " "reaching this limit of RSS memory usage.") FUZZER_FLAG_INT(malloc_limit_mb, 0, "If non-zero, the fuzzer will exit " "if the target tries to allocate this number of Mb with one malloc call. " |