[llvm] r268092 - [libFuzzer] fix docs
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 29 12:28:25 PDT 2016
Author: kcc
Date: Fri Apr 29 14:28:24 2016
New Revision: 268092
URL: http://llvm.org/viewvc/llvm-project?rev=268092&view=rev
Log:
[libFuzzer] fix docs
Modified:
llvm/trunk/docs/LibFuzzer.rst
Modified: llvm/trunk/docs/LibFuzzer.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LibFuzzer.rst?rev=268092&r1=268091&r2=268092&view=diff
==============================================================================
--- llvm/trunk/docs/LibFuzzer.rst (original)
+++ llvm/trunk/docs/LibFuzzer.rst Fri Apr 29 14:28:24 2016
@@ -243,13 +243,13 @@ The most important command line options
the same path for several parallel processes.
``-print_final_stats``
If 1, print statistics at exit. Defaults to 0.
+``-detect-leaks``
+ If 1 (default) and if LeakSanitizer is enabled
+ try to detect memory leaks during fuzzing (i.e. not only at shut down).
``-close_fd_mask``
Indicate output streams to close at startup. Be careful, this will also
remove diagnostic output from the tools in use; for example the messages
AddressSanitizer_ sends to ``stderr``/``stdout`` will also be lost.
-``-detect-leaks``
- If 1 (default) and if LeakSanitizer is enabled
- try to detect memory leaks during fuzzing (i.e. not only at shut down).
- 0 (default): close neither ``stdout`` nor ``stderr``
- 1 : close ``stdout``
More information about the llvm-commits
mailing list