[compiler-rt] r285401 - sanitizer_common: fix description of disable_coredump flag
Dmitry Vyukov via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 28 07:25:51 PDT 2016
Author: dvyukov
Date: Fri Oct 28 09:25:51 2016
New Revision: 285401
URL: http://llvm.org/viewvc/llvm-project?rev=285401&view=rev
Log:
sanitizer_common: fix description of disable_coredump flag
s/disable_core/disable_coredump/
Add missing space in text.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_flags.inc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_flags.inc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_flags.inc?rev=285401&r1=285400&r2=285401&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_flags.inc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_flags.inc Fri Oct 28 09:25:51 2016
@@ -155,9 +155,9 @@ COMMON_FLAG(bool, print_suppressions, tr
"Print matched suppressions at exit.")
COMMON_FLAG(
bool, disable_coredump, (SANITIZER_WORDSIZE == 64),
- "Disable core dumping. By default, disable_core=1 on 64-bit to avoid "
- "dumping a 16T+ core file. Ignored on OSes that don't dump core by"
- "default and for sanitizers that don't reserve lots of virtual memory.")
+ "Disable core dumping. By default, disable_coredump=1 on 64-bit to avoid"
+ " dumping a 16T+ core file. Ignored on OSes that don't dump core by"
+ " default and for sanitizers that don't reserve lots of virtual memory.")
COMMON_FLAG(bool, use_madv_dontdump, true,
"If set, instructs kernel to not store the (huge) shadow "
"in core file.")
More information about the llvm-commits
mailing list