diff options
Diffstat (limited to 'gcc/coverage.h')
-rw-r--r-- | gcc/coverage.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/coverage.h b/gcc/coverage.h index 6935c2d..1f3662b 100644 --- a/gcc/coverage.h +++ b/gcc/coverage.h @@ -26,13 +26,12 @@ along with GCC; see the file COPYING3. If not see extern void coverage_init (const char *); extern void coverage_finish (void); -/* Complete the coverage information for the current function. Once - per function. */ -extern void coverage_end_function (unsigned, unsigned); - /* Start outputting coverage information for the current - function. Repeatable per function. */ -extern int coverage_begin_output (unsigned, unsigned); + function. */ +extern int coverage_begin_function (unsigned, unsigned); + +/* Complete the coverage information for the current function. */ +extern void coverage_end_function (unsigned, unsigned); /* Compute the control flow checksum for the current function. */ extern unsigned coverage_compute_cfg_checksum (void); |