diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index 3be8579a9c3..202b07b8eb0 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -119,7 +119,7 @@ static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash))) static void set_type_quals PARAMS ((tree, int)); static void append_random_chars PARAMS ((char *)); static int type_hash_eq PARAMS ((const void *, const void *)); -static unsigned int type_hash_hash PARAMS ((const void *)); +static hashval_t type_hash_hash PARAMS ((const void *)); static void print_type_hash_statistics PARAMS((void)); static void finish_vector_type PARAMS((tree)); static tree make_vector PARAMS ((enum machine_mode, tree, int)); @@ -2936,7 +2936,7 @@ type_hash_eq (va, vb) /* Return the cached hash value. */ -static unsigned int +static hashval_t type_hash_hash (item) const void *item; { |