aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-11-06 23:04:15 -0800
committerDoug Evans <xdje42@gmail.com>2014-11-06 23:04:15 -0800
commitd1a2d36d58bf73daab55f95597218bab5dda471c (patch)
treeb88ef072bb0288e1653f0d9932118842101675f3 /gdb/symtab.h
parent24d864bb955adc2ecd2103dd7a0dbf9cdfd37010 (diff)
downloadgdb-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.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h8
1 files changed, 4 insertions, 4 deletions
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. */