diff options
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 8c378d96abb..5efd5dc9a20 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -35,7 +35,7 @@ static char *read_string PARAMS ((struct obstack *, FILE *, int)); static char *read_quoted_string PARAMS ((struct obstack *, FILE *)); static char *read_braced_string PARAMS ((struct obstack *, FILE *)); static void read_escape PARAMS ((struct obstack *, FILE *)); -static unsigned def_hash PARAMS ((const void *)); +static hashval_t def_hash PARAMS ((const void *)); static int def_name_eq_p PARAMS ((const void *, const void *)); static void read_constants PARAMS ((FILE *infile, char *tmp_char)); static void validate_const_int PARAMS ((FILE *, const char *)); @@ -401,7 +401,7 @@ atoll (p) #endif /* Given a constant definition, return a hash code for its name. */ -static unsigned +static hashval_t def_hash (def) const void *def; { |