diff options
author | Jason Merrill <jason@redhat.com> | 2003-05-07 20:30:13 +0000 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2003-05-07 20:30:13 +0000 |
commit | eafaf5ebda301c16b73c76bd72c6168a8948f46d (patch) | |
tree | 39d8e02cfd0a46e8eebb600bf5855b85a8874d4f /libiberty | |
parent | 35f5df7fe8004e03e2d9ae4b8de5186562e8caca (diff) | |
download | gdb-eafaf5ebda301c16b73c76bd72c6168a8948f46d.zip gdb-eafaf5ebda301c16b73c76bd72c6168a8948f46d.tar.gz gdb-eafaf5ebda301c16b73c76bd72c6168a8948f46d.tar.bz2 |
s/burtle/iterative
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 5498f11..0669803 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 5b58d71..3896328 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 */ |