diff options
author | Nick Clifton <nickc@redhat.com> | 2002-05-17 09:52:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-05-17 09:52:04 +0000 |
commit | 2c13d98be13219212a2038968b616b5c542a46cb (patch) | |
tree | 21345dd4214d694a024cd0e1757ea17f828640fb /bfd/hash.c | |
parent | ab3b81262e3164b572fc8eada737809cc09c92f8 (diff) | |
download | gdb-2c13d98be13219212a2038968b616b5c542a46cb.zip gdb-2c13d98be13219212a2038968b616b5c542a46cb.tar.gz gdb-2c13d98be13219212a2038968b616b5c542a46cb.tar.bz2 |
Remove computation of len from inside hash loop.
Diffstat (limited to 'bfd/hash.c')
-rw-r--r-- | bfd/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -375,8 +375,8 @@ bfd_hash_lookup (table, string, create, copy) { hash += c + (c << 17); hash ^= hash >> 2; - ++len; } + len = (s - (const unsigned char *) string) - 1; hash += len + (len << 17); hash ^= hash >> 2; |