diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-10-09 17:26:27 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-10-09 17:26:27 +0000 |
commit | fb7e6024db53e6e658bde922399e7e94930f25d3 (patch) | |
tree | 8a933151f8fc4f57dc1a7423f8d9e204efb9a82e /gcc/tree.c | |
parent | 36f7e96410747bc76e93b6c9495610eec0766e9d (diff) | |
download | gcc-fb7e6024db53e6e658bde922399e7e94930f25d3.zip gcc-fb7e6024db53e6e658bde922399e7e94930f25d3.tar.gz gcc-fb7e6024db53e6e658bde922399e7e94930f25d3.tar.bz2 |
conflict.c (arc_hash): Change return type to hashval_t.
* conflict.c (arc_hash): Change return type to hashval_t.
* cselib.c (get_value_hash): Likewise.
* genautomata.c (automaton_decl_hash, insn_decl_hash, decl_hash,
state_hash, automata_list_hash): Likewise.
* read-rtl.c (def_hash): Likewise.
* tree.c (type_hash_hash): Likewise.
From-SVN: r57987
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; { |