diff options
Diffstat (limited to 'gcc/coverage.h')
-rw-r--r-- | gcc/coverage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/coverage.h b/gcc/coverage.h index 81f87a6f..a144e0b 100644 --- a/gcc/coverage.h +++ b/gcc/coverage.h @@ -32,8 +32,8 @@ 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); +/* Compute the control flow checksum for the function FN given as argument. */ +extern unsigned coverage_compute_cfg_checksum (struct function *fn); /* Compute the profile id of function N. */ extern unsigned coverage_compute_profile_id (struct cgraph_node *n); |