Make the pre-commit-hook happy about the code in libgcov.c
Make the comments match what pre-commit-hook wants. Change-Id: Ib99a6583f97221df3638bd3b7723f51d5f9c223c Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-on: http://review.coreboot.org/2143 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
d37ab454d4
commit
850793f6d0
|
@ -811,14 +811,15 @@ __gcov_merge_ior (gcov_type *counters, unsigned n_counters)
|
||||||
|
|
||||||
#ifdef L_gcov_merge_single
|
#ifdef L_gcov_merge_single
|
||||||
/* The profile merging function for choosing the most common value.
|
/* The profile merging function for choosing the most common value.
|
||||||
It is given an array COUNTERS of N_COUNTERS old counters and it
|
* It is given an array COUNTERS of N_COUNTERS old counters and it
|
||||||
reads the same number of counters from the gcov file. The counters
|
* reads the same number of counters from the gcov file. The counters
|
||||||
are split into 3-tuples where the members of the tuple have
|
* are split into 3-tuples where the members of the tuple have
|
||||||
meanings:
|
* meanings:
|
||||||
|
*
|
||||||
-- the stored candidate on the most common value of the measured entity
|
* -- the stored candidate on the most common value of the measured entity
|
||||||
-- counter
|
* -- counter
|
||||||
-- total number of evaluations of the value */
|
* -- total number of evaluations of the value
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
__gcov_merge_single (gcov_type *counters, unsigned n_counters)
|
__gcov_merge_single (gcov_type *counters, unsigned n_counters)
|
||||||
{
|
{
|
||||||
|
@ -849,15 +850,16 @@ __gcov_merge_single (gcov_type *counters, unsigned n_counters)
|
||||||
|
|
||||||
#ifdef L_gcov_merge_delta
|
#ifdef L_gcov_merge_delta
|
||||||
/* The profile merging function for choosing the most common
|
/* The profile merging function for choosing the most common
|
||||||
difference between two consecutive evaluations of the value. It is
|
* difference between two consecutive evaluations of the value. It is
|
||||||
given an array COUNTERS of N_COUNTERS old counters and it reads the
|
* given an array COUNTERS of N_COUNTERS old counters and it reads the
|
||||||
same number of counters from the gcov file. The counters are split
|
* same number of counters from the gcov file. The counters are split
|
||||||
into 4-tuples where the members of the tuple have meanings:
|
* into 4-tuples where the members of the tuple have meanings:
|
||||||
|
*
|
||||||
-- the last value of the measured entity
|
* -- the last value of the measured entity
|
||||||
-- the stored candidate on the most common difference
|
* -- the stored candidate on the most common difference
|
||||||
-- counter
|
* -- counter
|
||||||
-- total number of evaluations of the value */
|
* -- total number of evaluations of the value
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
__gcov_merge_delta (gcov_type *counters, unsigned n_counters)
|
__gcov_merge_delta (gcov_type *counters, unsigned n_counters)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue