From f08e8df3ab2f98b68c6cba6dc9ff5ae2ff3ecb6c Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Sun, 26 Oct 2014 10:42:26 -0700 Subject: [PATCH] Move block_found decl to symtab.h. gdb/ChangeLog: * parser-defs.h (block_found): Move decl from here ... * symtab.h (block_found): ... to here. --- gdb/ChangeLog | 5 +++++ gdb/parser-defs.h | 5 ----- gdb/symtab.h | 4 ++++ 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 62c015d..fd417f7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-10-26 Doug Evans + * parser-defs.h (block_found): Move decl from here ... + * symtab.h (block_found): ... to here. + +2014-10-26 Doug Evans + * symtab.h (struct field_of_this_result): Fix typo in comment. (lookup_symbol_in_language): Move function comment here. (lookup_symbol): Improve function comment. diff --git a/gdb/parser-defs.h b/gdb/parser-defs.h index e43b1ae..2ba6e05 100644 --- a/gdb/parser-defs.h +++ b/gdb/parser-defs.h @@ -67,11 +67,6 @@ extern CORE_ADDR expression_context_pc; we've encountered so far. */ extern const struct block *innermost_block; -/* The block in which the most recently discovered symbol was found. - FIXME: Should be declared along with lookup_symbol in symtab.h; is not - related specifically to parsing. */ -extern const struct block *block_found; - /* Number of arguments seen so far in innermost function call. */ extern int arglist_len; diff --git a/gdb/symtab.h b/gdb/symtab.h index 9d1aa98..73108f0 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1011,6 +1011,10 @@ DEF_VEC_P (symtab_ptr); extern int currently_reading_symtab; +/* The block in which the most recently looked up symbol was found. */ + +extern const struct block *block_found; + /* symtab.c lookup functions */ extern const char multiple_symbols_ask[]; -- 2.7.4