diff options
author | Martin Liska <mliska@suse.cz> | 2017-04-28 14:50:47 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-04-28 12:50:47 +0000 |
commit | 9b9d6370d48146a0dd8ed327ecdbfc9273abf91a (patch) | |
tree | edd820da9b9eda43ecbf35660da62b66ab4720f2 /gcc/doc/gcov.texi | |
parent | 0790260e7ce01b4fb1f2f51da17d6769b289a003 (diff) | |
download | gcc-9b9d6370d48146a0dd8ed327ecdbfc9273abf91a.zip gcc-9b9d6370d48146a0dd8ed327ecdbfc9273abf91a.tar.gz gcc-9b9d6370d48146a0dd8ed327ecdbfc9273abf91a.tar.bz2 |
Introduce new option -w which shows verbose informations.
2017-04-28 Martin Liska <mliska@suse.cz>
* gcov.c (process_args): Handle new argument 'w'.
(read_graph_file): Assign ID to BBs.
(output_branch_count): Display BB # if verbose flag is set.
(output_lines): Likewise for arcs.
(print_usage): Add '--verbose' option help.
* doc/gcov.texi: Document --verbose (-w) option.
From-SVN: r247373
Diffstat (limited to 'gcc/doc/gcov.texi')
-rw-r--r-- | gcc/doc/gcov.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/doc/gcov.texi b/gcc/doc/gcov.texi index d728444..2b41010 100644 --- a/gcc/doc/gcov.texi +++ b/gcc/doc/gcov.texi @@ -289,6 +289,10 @@ where the @var{source-file} component is the final filename part and the @var{md5} component is calculated from the full mangled name that would have been used otherwise. +@item -w +@itemx --verbose +Print verbose informations related to basic blocks and arcs. + @end table @command{gcov} should be run with the current directory the same as that |