From b97749b024c7d9ef34d5e612f2cc8290847d020e Mon Sep 17 00:00:00 2001 From: marxin Date: Fri, 28 Apr 2017 12:51:40 +0000 Subject: Sort options of gcov, gcov-dump and gcov-tool both in --help and documentation 2017-04-28 Martin Liska * doc/gcov.texi: Sort options in alphabetic order. * doc/gcov-dump.texi: Likewise. * doc/gcov-tool.texi: Likewise. * gcov.c (print_usage): Likewise. * gcov-dump.c (print_usage): Likewise. * gcov-tool.c (print_merge_usage_message): Likewise. (print_rewrite_usage_message): Likewise. (print_overlap_usage_message): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@247376 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/gcov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcov.c') diff --git a/gcc/gcov.c b/gcc/gcov.c index 924a5a38164..4e6771e79d0 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -683,13 +683,13 @@ print_usage (int error_p) fnotice (file, "Usage: gcov [OPTION...] SOURCE|OBJ...\n\n"); fnotice (file, "Print code coverage information.\n\n"); - fnotice (file, " -h, --help Print this help, then exit\n"); fnotice (file, " -a, --all-blocks Show information for every basic block\n"); fnotice (file, " -b, --branch-probabilities Include branch probabilities in output\n"); fnotice (file, " -c, --branch-counts Output counts of branches taken\n\ rather than percentages\n"); fnotice (file, " -d, --display-progress Display progress information\n"); fnotice (file, " -f, --function-summaries Output summaries for each function\n"); + fnotice (file, " -h, --help Print this help, then exit\n"); fnotice (file, " -i, --intermediate-format Output .gcov file in intermediate text format\n"); fnotice (file, " -l, --long-file-names Use long output file names for included\n\ source files\n"); -- cgit v1.2.1