diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2018-07-22 08:39:57 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2018-07-22 08:39:57 +0000 |
commit | 5037f87ef92dd486ef768203db71f2b03d5834b2 (patch) | |
tree | f92e1b4690c72ad7edf8a597a2ec6dbc9bded3ad | |
parent | cf1499d2ad2e9cab1acc605a0285e67b668051ba (diff) | |
download | gcc-5037f87ef92dd486ef768203db71f2b03d5834b2.zip gcc-5037f87ef92dd486ef768203db71f2b03d5834b2.tar.gz gcc-5037f87ef92dd486ef768203db71f2b03d5834b2.tar.bz2 |
* doc/gcov.texi (Invoking Gcov): Editorial changes.
From-SVN: r262922
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/gcov.texi | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 00c48d1..7be6b8d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-07-22 Gerald Pfeifer <gerald@pfeifer.com> + + * doc/gcov.texi (Invoking Gcov): Editorial changes. + 2018-07-20 David Malcolm <dmalcolm@redhat.com> * pretty-print.c (text_info::set_location): Remove redundant diff --git a/gcc/doc/gcov.texi b/gcc/doc/gcov.texi index 1cdca11..dfa86f1 100644 --- a/gcc/doc/gcov.texi +++ b/gcc/doc/gcov.texi @@ -378,12 +378,12 @@ command line option. The @var{execution_count} is @samp{-} for lines containing no code. Unexecuted lines are marked @samp{#####} or @samp{=====}, depending on whether they are reachable by non-exceptional paths or only exceptional paths such as C++ exception -handlers, respectively. Given @samp{-a} option, unexecuted blocks are +handlers, respectively. Given the @samp{-a} option, unexecuted blocks are marked @samp{$$$$$} or @samp{%%%%%}, depending on whether a basic block is reachable via non-exceptional or exceptional paths. Executed basic blocks having a statement with zero @var{execution_count} -end with @samp{*} character and are colored with magenta color with @option{-k} -option. The functionality is not supported in Ada. +end with @samp{*} character and are colored with magenta color with +the @option{-k} option. This functionality is not supported in Ada. Note that GCC can completely remove the bodies of functions that are not needed -- for instance if they are inlined everywhere. Such functions |