]> granicus.if.org Git - llvm/commitdiff
docs: Improve wording on building for fuzzing
authorJustin Bogner <mail@justinbogner.com>
Fri, 13 Oct 2017 06:29:09 +0000 (06:29 +0000)
committerJustin Bogner <mail@justinbogner.com>
Fri, 13 Oct 2017 06:29:09 +0000 (06:29 +0000)
The original sentence didn't really make sense.

Patch by Vedant Kumar. Thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315676 91177308-0d34-0410-b5e6-96231b3b80d8

docs/FuzzingLLVM.rst

index 138c655a962e20fabdae94182ca4bc8a7206d494..5ac0ff8d5198b811eb2c22b371a18c70a1ac8b40 100644 (file)
@@ -199,9 +199,9 @@ Configuring LLVM to Build Fuzzers
 
 Fuzzers will be built and linked to libFuzzer by default as long as you build
 LLVM with sanitizer coverage enabled. You would typically also enable at least
-one sanitizer for the fuzzers to be particularly likely, so the most common way
-to build the fuzzers is by adding the following two flags to your CMake
-invocation: ``-DLLVM_USE_SANITIZER=Address -DLLVM_USE_SANITIZE_COVERAGE=On``.
+one sanitizer to find bugs faster. The most common way to build the fuzzers is
+by adding the following two flags to your CMake invocation:
+``-DLLVM_USE_SANITIZER=Address -DLLVM_USE_SANITIZE_COVERAGE=On``.
 
 .. note:: If you have ``compiler-rt`` checked out in an LLVM tree when building
           with sanitizers, you'll want to specify ``-DLLVM_BUILD_RUNTIME=Off``