[compiler-rt] [libFuzzer] Add missing space in FuzzerFlags.def (PR #122619)

via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 11 15:01:36 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-compiler-rt-sanitizer

Author: Amir Livneh (amirlivneh)

<details>
<summary>Changes</summary>



---
Full diff: https://github.com/llvm/llvm-project/pull/122619.diff


1 Files Affected:

- (modified) compiler-rt/lib/fuzzer/FuzzerFlags.def (+1-1) 


``````````diff
diff --git a/compiler-rt/lib/fuzzer/FuzzerFlags.def b/compiler-rt/lib/fuzzer/FuzzerFlags.def
index fc3b3aa8c98ad5..bf6bf4bba5a9b1 100644
--- a/compiler-rt/lib/fuzzer/FuzzerFlags.def
+++ b/compiler-rt/lib/fuzzer/FuzzerFlags.def
@@ -25,7 +25,7 @@ FUZZER_FLAG_STRING(seed_inputs, "A comma-separated list of input files "
   "the name of a file containing the comma-separated list.")
 FUZZER_FLAG_INT(keep_seed, 0, "If 1, keep seed inputs in the corpus even if "
   "they do not produce new coverage. When used with |reduce_inputs==1|, the "
-  "seed inputs will never be reduced. This option can be useful when seeds are"
+  "seed inputs will never be reduced. This option can be useful when seeds are "
   "not properly formed for the fuzz target but still have useful snippets.")
 FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.")
 FUZZER_FLAG_INT(cross_over_uniform_dist, 0, "Experimental. If 1, use a "

``````````

</details>


https://github.com/llvm/llvm-project/pull/122619


More information about the llvm-commits mailing list