diff options
author | Daniel Jacobowitz <dan@debian.org> | 2001-10-12 19:07:07 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2001-10-12 19:07:07 +0000 |
commit | 7086476cc8e04d755ce608b464142199a8f59523 (patch) | |
tree | 8c6522d7b37455dce2888bbd5c8d9e0bb8da717a /gdb/objfiles.h | |
parent | e04dd3b2c4416acb819f7d632b49486e010a9562 (diff) | |
download | gdb-7086476cc8e04d755ce608b464142199a8f59523.tar.gz |
* minsyms.c (msymbol_hash): Use better hash function.
(msymbol_hash_iw): Likewise. Terminate loop at '(' properly.
* objfiles.h: Increase MINIMAL_SYMBOL_HASH_SIZE to match modern
binaries.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index d3f669e9601..992ae71e47f 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -202,7 +202,7 @@ extern void print_objfile_statistics (void); extern void print_symbol_bcache_statistics (void); /* Number of entries in the minimal symbol hash table. */ -#define MINIMAL_SYMBOL_HASH_SIZE 349 +#define MINIMAL_SYMBOL_HASH_SIZE 2039 /* Master structure for keeping track of each file from which gdb reads symbols. There are several ways these get allocated: 1. |