diff options
author | Martin Liska <mliska@suse.cz> | 2016-08-09 23:02:24 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2016-08-09 21:02:24 +0000 |
commit | e0c8eebff7810f5ca52a884006c6bc681820144d (patch) | |
tree | 4a82710fa8d269c84ee4b9e887d0f0157d5d582d /gcc/doc/gcov.texi | |
parent | 6dce6418c50b26cb8eaa353366c70b96887bd010 (diff) | |
download | gcc-e0c8eebff7810f5ca52a884006c6bc681820144d.zip gcc-e0c8eebff7810f5ca52a884006c6bc681820144d.tar.gz gcc-e0c8eebff7810f5ca52a884006c6bc681820144d.tar.bz2 |
Fix typo in gcov.texi
* doc/gcov.texi: Change _gcov_dump to __gcov_dump and
_gcov_reset to __gcov_reset.
* doc/gcov-tool.texi: Fix typo.
* libgcov-util.c: Fix typo and GNU coding style.
From-SVN: r239307
Diffstat (limited to 'gcc/doc/gcov.texi')
-rw-r--r-- | gcc/doc/gcov.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/gcov.texi b/gcc/doc/gcov.texi index 89d8049..df58df8 100644 --- a/gcc/doc/gcov.texi +++ b/gcc/doc/gcov.texi @@ -582,10 +582,10 @@ now be calculable at compile time in some instances. Because the coverage of all the uses of the inline function will be shown for the same source lines, the line counts themselves might seem inconsistent. -Long-running applications can use the @code{_gcov_reset} and @code{_gcov_dump} +Long-running applications can use the @code{__gcov_reset} and @code{__gcov_dump} facilities to restrict profile collection to the program region of -interest. Calling @code{_gcov_reset(void)} will clear all profile counters -to zero, and calling @code{_gcov_dump(void)} will cause the profile information +interest. Calling @code{__gcov_reset(void)} will clear all profile counters +to zero, and calling @code{__gcov_dump(void)} will cause the profile information collected at that point to be dumped to @file{.gcda} output files. @c man end |