diff options
author | Martin Liska <mliska@suse.cz> | 2020-07-01 13:02:07 +0200 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:15:42 -0300 |
commit | 9ceb12862a3d026c43d3a326cf2b5ccd7c99fd89 (patch) | |
tree | 5e996bdd3702a1eeb3549fa37017708147149289 /gcc | |
parent | 2f7a84df86f47783435eceee0b15bf24f3f9e41c (diff) | |
download | gcc-9ceb12862a3d026c43d3a326cf2b5ccd7c99fd89.zip gcc-9ceb12862a3d026c43d3a326cf2b5ccd7c99fd89.tar.gz gcc-9ceb12862a3d026c43d3a326cf2b5ccd7c99fd89.tar.bz2 |
gcov: shorted one option help message
gcc/ChangeLog:
* gcov.c (print_usage): Shorted option description for -j
option.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcov.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -898,7 +898,8 @@ print_usage (int error_p) 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, " -j, --json-format Output JSON intermediate format into .gcov.json.gz file\n"); + fnotice (file, " -j, --json-format Output JSON intermediate format \n\ + into .gcov.json.gz file\n"); fnotice (file, " -H, --human-readable Output human readable numbers\n"); fnotice (file, " -k, --use-colors Emit colored output\n"); fnotice (file, " -l, --long-file-names Use long output file names for included\n\ |