forked from Imagelibrary/binutils-gdb
Correct the alpha sorting of the short options in the usage description of the gprof program.
PR 24569 * gprof.c (usage): Restore alphabetical sorting to short options list. Add -r, -R and -t short options to the list. (main): Add comment about -g and -G possibly being deprecated. * gprof.texi: Update usage example in line with changes above.
This commit is contained in:
@@ -160,7 +160,7 @@ static void
|
||||
usage (FILE *stream, int status)
|
||||
{
|
||||
fprintf (stream, _("\
|
||||
Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqSQZ][name]] [-I dirs]\n\
|
||||
Usage: %s [-[abcDhilLrsTvwxyz]] [-[ACeEfFJnNOpPqQRStZ][name]] [-I dirs]\n\
|
||||
[-d[num]] [-k from/to] [-m min-count] [-t table-length]\n\
|
||||
[--[no-]annotated-source[=name]] [--[no-]exec-counts[=name]]\n\
|
||||
[--[no-]flat-profile[=name]] [--[no-]graph[=name]]\n\
|
||||
@@ -269,6 +269,10 @@ main (int argc, char **argv)
|
||||
case 'f':
|
||||
sym_id_add (optarg, INCL_GRAPH);
|
||||
break;
|
||||
/* FIXME: The -g and -G options are not present in the getopt_long
|
||||
invocation above, and they are not documented in gprof.texi.
|
||||
Therefore they appear to be deprecated. Test this theory and
|
||||
delete them if true. */
|
||||
case 'g':
|
||||
sym_id_add (optarg, EXCL_FLAT);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user