diff options
author | Doug Evans <xdje42@gmail.com> | 2014-11-06 23:04:15 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-11-06 23:04:15 -0800 |
commit | d1a2d36d58bf73daab55f95597218bab5dda471c (patch) | |
tree | b88ef072bb0288e1653f0d9932118842101675f3 | |
parent | 24d864bb955adc2ecd2103dd7a0dbf9cdfd37010 (diff) | |
download | gdb-d1a2d36d58bf73daab55f95597218bab5dda471c.zip gdb-d1a2d36d58bf73daab55f95597218bab5dda471c.tar.gz gdb-d1a2d36d58bf73daab55f95597218bab5dda471c.tar.bz2 |
lookup_symbol_in_block: Renamed from lookup_symbol_aux_block.
gdb/ChangeLog:
* symtab.c (lookup_symbol_in_block): Renamed from
lookup_symbol_aux_block. All callers updated.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/cp-namespace.c | 2 | ||||
-rw-r--r-- | gdb/symtab.c | 8 | ||||
-rw-r--r-- | gdb/symtab.h | 8 |
4 files changed, 14 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f31e43a..3300cda 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-11-06 Doug Evans <xdje42@gmail.com> + * symtab.c (lookup_symbol_in_block): Renamed from + lookup_symbol_aux_block. All callers updated. + +2014-11-06 Doug Evans <xdje42@gmail.com> + * symtab.c (lookup_static_symbol): Renamed from lookup_static_symbol_aux. All callers updated. (lookup_symbol_in_static_block): Renamed from lookup_symbol_static. diff --git a/gdb/cp-namespace.c b/gdb/cp-namespace.c index 76ffee2..898fb5a 100644 --- a/gdb/cp-namespace.c +++ b/gdb/cp-namespace.c @@ -628,7 +628,7 @@ lookup_symbol_file (const char *name, const struct block *global_block = block_global_block (block); if (global_block != NULL) - sym = lookup_symbol_aux_block (name, global_block, domain); + sym = lookup_symbol_in_block (name, global_block, domain); } else { diff --git a/gdb/symtab.c b/gdb/symtab.c index f6c3079..3c2e277 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -1515,7 +1515,7 @@ lookup_symbol_aux_local (const char *name, const struct block *block, while (block != static_block) { - sym = lookup_symbol_aux_block (name, block, domain); + sym = lookup_symbol_in_block (name, block, domain); if (sym != NULL) return sym; @@ -1567,8 +1567,8 @@ lookup_objfile_from_block (const struct block *block) /* See symtab.h. */ struct symbol * -lookup_symbol_aux_block (const char *name, const struct block *block, - const domain_enum domain) +lookup_symbol_in_block (const char *name, const struct block *block, + const domain_enum domain) { struct symbol *sym; @@ -1808,7 +1808,7 @@ lookup_symbol_in_static_block (const char *name, const struct block *static_block = block_static_block (block); if (static_block != NULL) - return lookup_symbol_aux_block (name, static_block, domain); + return lookup_symbol_in_block (name, static_block, domain); else return NULL; } diff --git a/gdb/symtab.h b/gdb/symtab.h index 1d95258..5564dbe 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1104,13 +1104,13 @@ extern struct symbol *lookup_symbol_global (const char *name, const struct block *block, const domain_enum domain); -/* Lookup a symbol within the block BLOCK. +/* Lookup a symbol in block BLOCK. Upon success sets BLOCK_FOUND and fixes up the symbol's section if necessary. */ -extern struct symbol *lookup_symbol_aux_block (const char *name, - const struct block *block, - const domain_enum domain); +extern struct symbol *lookup_symbol_in_block (const char *name, + const struct block *block, + const domain_enum domain); /* Look up the `this' symbol for LANG in BLOCK. Return the symbol if found, or NULL if not found. */ |