diff options
Diffstat (limited to 'gcc/coverage.c')
-rw-r--r-- | gcc/coverage.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/coverage.c b/gcc/coverage.c index 40d788f..a9c5e86 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -86,7 +86,7 @@ struct GTY((chain_next ("%h.next"))) coverage_data }; /* Counts information for a function. */ -typedef struct counts_entry +typedef struct counts_entry : pointer_hash <counts_entry> { /* We hash by */ unsigned ident; @@ -99,8 +99,6 @@ typedef struct counts_entry struct gcov_ctr_summary summary; /* hash_table support. */ - typedef counts_entry *value_type; - typedef counts_entry *compare_type; static inline hashval_t hash (const counts_entry *); static int equal (const counts_entry *, const counts_entry *); static void remove (counts_entry *); |