diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-07 20:30:32 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-07 20:30:32 +0000 |
commit | 24bfa2345430b739a614f7d2949bd3b5c62bb26f (patch) | |
tree | 51dc680001a4c521cc9b61cfc6eea83195a4bb3e /libiberty | |
parent | 01c7a1a2f6a4469f528047937d961aabe5805dbd (diff) | |
download | gcc-24bfa2345430b739a614f7d2949bd3b5c62bb26f.tar.gz |
s/burtle/iterative
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66577 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 2 | ||||
-rw-r--r-- | libiberty/hashtab.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 5498f112156..066980339ba 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -5,7 +5,7 @@ 2003-05-07 Jason Merrill <jason@redhat.com> - * hashtab.c (burtle_hash): New fn. + * hashtab.c (iterative_hash): New fn. * configure.in: Add AC_C_BIGENDIAN_CROSS. * aclocal.m4: Include accross.m4. * configure, config.in: Regenerate. diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 5b58d71ef13..3896328717a 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -787,7 +787,7 @@ acceptable. Do NOT use for cryptographic purposes. -------------------------------------------------------------------- */ -hashval_t burtle_hash (k_in, length, initval) +hashval_t iterative_hash (k_in, length, initval) const PTR k_in; /* the key */ register size_t length; /* the length of the key */ register hashval_t initval; /* the previous hash, or an arbitrary value */ |