|
From: Nicholas N. <nj...@so...> - 2018-11-16 05:49:17
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=18d4bf8f0cbee0f47e35258b34e88a19c5da33fa commit 18d4bf8f0cbee0f47e35258b34e88a19c5da33fa Author: Nicholas Nethercote <nne...@mo...> Date: Fri Nov 16 16:48:13 2018 +1100 Fix Cachegrind's --help message. Diff: --- cachegrind/cg_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cachegrind/cg_main.c b/cachegrind/cg_main.c index f23b82b..cb696b8 100644 --- a/cachegrind/cg_main.c +++ b/cachegrind/cg_main.c @@ -1760,8 +1760,8 @@ static void cg_print_usage(void) { VG_(print_cache_clo_opts)(); VG_(printf)( -" --cache-sim=yes|no [yes] collect cache stats?\n" -" --branch-sim=yes|no [no] collect branch prediction stats?\n" +" --cache-sim=yes|no collect cache stats? [yes]\n" +" --branch-sim=yes|no collect branch prediction stats? [no]\n" " --cachegrind-out-file=<file> output file name [cachegrind.out.%%p]\n" ); } |