diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-09 17:26:27 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-09 17:26:27 +0000 |
commit | aa77e59fb2efeeb22aad6762e190ab05360f1ae1 (patch) | |
tree | 8a933151f8fc4f57dc1a7423f8d9e204efb9a82e /gcc/cselib.c | |
parent | a2041fb64cb609c0a754b468c60eb306efe00889 (diff) | |
download | gcc-aa77e59fb2efeeb22aad6762e190ab05360f1ae1.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57987 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cselib.c')
-rw-r--r-- | gcc/cselib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cselib.c b/gcc/cselib.c index 9c54015f1e8..feffa6de6cf 100644 --- a/gcc/cselib.c +++ b/gcc/cselib.c @@ -39,7 +39,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "cselib.h" static int entry_and_rtx_equal_p PARAMS ((const void *, const void *)); -static unsigned int get_value_hash PARAMS ((const void *)); +static hashval_t get_value_hash PARAMS ((const void *)); static struct elt_list *new_elt_list PARAMS ((struct elt_list *, cselib_val *)); static struct elt_loc_list *new_elt_loc_list PARAMS ((struct elt_loc_list *, @@ -274,7 +274,7 @@ entry_and_rtx_equal_p (entry, x_arg) hash_rtx when adding an element; this function just extracts the hash value from a cselib_val structure. */ -static unsigned int +static hashval_t get_value_hash (entry) const void *entry; { |