diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 14:59:55 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 14:59:55 +0000 |
commit | a5f725a35455b01e1c2b263e7cedc1b1b59df0af (patch) | |
tree | 5912b22db4e0cf68fd80958ee2e0652805616d05 /libiberty | |
parent | cf4951914d695832e1e67153b82801d6d45ce436 (diff) | |
download | gcc-a5f725a35455b01e1c2b263e7cedc1b1b59df0af.tar.gz |
* hashtab.c (htab_expand): Add prototype.
(find_empty_slot_for_expand): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33487 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/hashtab.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 65e71bbd667..01168d81b3d 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 27 16:58:43 MET DST 2000 Jan Hubicka <jh@suse.cz> + + * hashtab.c (htab_expand): Add prototype. + (find_empty_slot_for_expand): Likewise. + 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * hashtab.c (hash_pointer, eq_pointer): Make definition static to diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index fa0ffac22fb..0c0b9a854e4 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -58,6 +58,8 @@ Boston, MA 02111-1307, USA. */ static unsigned long higher_prime_number PARAMS ((unsigned long)); static hashval_t hash_pointer PARAMS ((const void *)); static int eq_pointer PARAMS ((const void *, const void *)); +static void htab_expand PARAMS ((htab_t)); +static void **find_empty_slot_for_expand PARAMS ((htab_t, hashval_t)); /* At some point, we could make these be NULL, and modify the hash-table routines to handle NULL specially; that would avoid |