[compiler-rt] 5252606 - [NFC][compiler-rt] Add missing space in libfuzzer -help docs

via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 28 01:00:24 PDT 2023


Author: MarcoFalke
Date: 2023-07-28T09:59:32+02:00
New Revision: 52526065bc808e52d0803b28aa24c0bb7ae70d87

URL: https://github.com/llvm/llvm-project/commit/52526065bc808e52d0803b28aa24c0bb7ae70d87
DIFF: https://github.com/llvm/llvm-project/commit/52526065bc808e52d0803b28aa24c0bb7ae70d87.diff

LOG: [NFC][compiler-rt] Add missing space in libfuzzer -help docs

Added: 
    

Modified: 
    compiler-rt/lib/fuzzer/FuzzerFlags.def

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/fuzzer/FuzzerFlags.def b/compiler-rt/lib/fuzzer/FuzzerFlags.def
index 11815349b0149f..fc3b3aa8c98ad5 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. "


        


More information about the llvm-commits mailing list