From a2a677c54221f48136b7f3afde743ad0ff26f8e5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 28 Oct 2016 14:25:51 +0000 Subject: [PATCH] sanitizer_common: fix description of disable_coredump flag s/disable_core/disable_coredump/ Add missing space in text. llvm-svn: 285401 --- compiler-rt/lib/sanitizer_common/sanitizer_flags.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc b/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc index 3e84cc3..685e29b 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc @@ -155,9 +155,9 @@ COMMON_FLAG(bool, print_suppressions, true, "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.") -- 2.7.4