Fix typo in gcov.texi
authorMartin Liska <mliska@suse.cz>
Tue, 9 Aug 2016 21:02:24 +0000 (23:02 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Tue, 9 Aug 2016 21:02:24 +0000 (21:02 +0000)
* 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

gcc/ChangeLog
gcc/doc/gcov-tool.texi
gcc/doc/gcov.texi
libgcc/ChangeLog
libgcc/libgcov-util.c

index 2b1d5ffb00ecb0541a910a9e0b2d751072a5107f..2c8fc557f377a25afeb45d613c4b225444e80398 100644 (file)
@@ -1,3 +1,9 @@
+2016-08-09  Martin Liska  <mliska@suse.cz>
+
+       * doc/gcov.texi: Change _gcov_dump to __gcov_dump and
+       _gcov_reset to __gcov_reset.
+       * doc/gcov-tool.texi: Fix typo.
+
 2016-08-09  Martin Liska  <mliska@suse.cz>
 
        * value-prof.c (gimple_divmod_values_to_profile): Do not
index 845f14b10414f419c93ca27e6962894082b4a8f8..c4a9ce149fca6bace22d3f8054592cfee1cf53c4 100644 (file)
@@ -193,7 +193,7 @@ in the new profile.
 @end table
 
 @item overlap
-Computer the overlap score between the two specified profile directories.
+Compute the overlap score between the two specified profile directories.
 The overlap score is computed based on the arc profiles. It is defined as
 the sum of min (p1_counter[i] / p1_sum_all, p2_counter[i] / p2_sum_all),
 for all arc counter i, where p1_counter[i] and p2_counter[i] are two
index 89d80499f0e63473e156ecf41002da69752a84ae..df58df8ab61a33c0c99987322dd7f962a52893a6 100644 (file)
@@ -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
index aaff313467127897743a060c7b0a312fa4e3fa8e..866d14a17a3ae82b18c279c0a382115804bc1487 100644 (file)
@@ -1,3 +1,7 @@
+2016-08-09  Martin Liska  <mliska@suse.cz>
+
+       * libgcov-util.c: Fix typo and GNU coding style.
+
 2016-08-09  Martin Liska  <mliska@suse.cz>
 
        * Makefile.in: Remove __gcov_indirect_call_profiler.
index 7b3bc31ec5091addef60365c2ef0a30b5b577322..c8fb52d2b1b010be9cf61e85a460c9b67c80c8de 100644 (file)
@@ -1391,7 +1391,8 @@ calculate_overlap (struct gcov_info *gcov_list1,
   return prg_val;
 }
 
-/* Computer the overlap score of two lists of gcov_info objects PROFILE1 and PROFILE2.
+/* Compute the overlap score of two lists of gcov_info objects PROFILE1 and
+   PROFILE2.
    Return 0 on success: without mismatch. Reutrn 1 on error.  */
 
 int