diff options
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 52925db..fb308be 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -463,10 +463,11 @@ parse_exp_in_context (const char **stringptr, CORE_ADDR pc, if (!expression_context_block) { struct symtab_and_line cursal = get_current_source_symtab_and_line (); + if (cursal.symtab) expression_context_block - = BLOCKVECTOR_BLOCK (cursal.symtab->compunit ()->blockvector (), - STATIC_BLOCK); + = cursal.symtab->compunit ()->blockvector ()->static_block (); + if (expression_context_block) expression_context_pc = expression_context_block->entry_pc (); } |