diff options
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 14d2c0f..d920f8d 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -47,11 +47,12 @@ #include "gdbcore.h" #include "symfile.h" #include "objfiles.h" -#include "obstack.h" +#include "gdb_obstack.h" #include "buildsym.h" #include "stabsread.h" #include "complaints.h" #include "demangle.h" +#include "gdb_assert.h" /* These are needed if the tm.h file does not contain the necessary mips specific definitions. */ @@ -4727,6 +4728,11 @@ shrink_block (struct block *b, struct symtab *s) + ((BLOCK_NSYMS (b) - 1) * sizeof (struct symbol *)))); + /* FIXME: Not worth hashing this block as it's built. */ + /* All callers should have created the block with new_block (), which + would mean it was not previously hashed. Make sure. */ + gdb_assert (BLOCK_HASHTABLE (new) == 0); + /* Should chase pointers to old one. Fortunately, that`s just the block`s function and inferior blocks */ if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b) |