aboutsummaryrefslogtreecommitdiff
path: root/gdb/dictionary.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-04-06 19:50:05 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-04-06 19:50:05 +0000
commit59d7bcaf18f0f9cff495e7a1a9e08dde859fb1f2 (patch)
tree118f98db3d708cd3040abc9be056ed0a817e9449 /gdb/dictionary.c
parent8c5fc8001110c72f83edccd8d3872cc868454f54 (diff)
downloadgdb-59d7bcaf18f0f9cff495e7a1a9e08dde859fb1f2.zip
gdb-59d7bcaf18f0f9cff495e7a1a9e08dde859fb1f2.tar.gz
gdb-59d7bcaf18f0f9cff495e7a1a9e08dde859fb1f2.tar.bz2
gdb/
Code cleanup. * dictionary.c (dict_hash): Use SYMBOL_HASH_NEXT. * dwarf2read.c (mapped_index_string_hash): Refer to SYMBOL_HASH_NEXT in the function comment, a new note on values compatibility. * minsyms.c (msymbol_hash_iw, msymbol_hash): Use SYMBOL_HASH_NEXT. * symtab.h (SYMBOL_HASH_NEXT): New.
Diffstat (limited to 'gdb/dictionary.c')
-rw-r--r--gdb/dictionary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dictionary.c b/gdb/dictionary.c
index 2981692..8142d29 100644
--- a/gdb/dictionary.c
+++ b/gdb/dictionary.c
@@ -826,7 +826,7 @@ dict_hash (const char *string0)
}
/* FALL THROUGH */
default:
- hash = hash * 67 + *string - 113;
+ hash = SYMBOL_HASH_NEXT (hash, *string);
string += 1;
break;
}