diff options
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index e497bed..29e7d70 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1012,7 +1012,8 @@ extern unsigned int msymbol_hash (const char *); is only a GDB in-memory computed value with no external files compatibility requirements. */ -#define SYMBOL_HASH_NEXT(hash, c) ((hash) * 67 + (c) - 113) +#define SYMBOL_HASH_NEXT(hash, c) \ + ((hash) * 67 + tolower ((unsigned char) (c)) - 113) extern struct objfile * msymbol_objfile (struct minimal_symbol *sym); |