aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-11-06 22:56:46 -0800
committerDoug Evans <xdje42@gmail.com>2014-11-06 22:56:46 -0800
commit24d864bb955adc2ecd2103dd7a0dbf9cdfd37010 (patch)
tree162f3f2b969f5021f49be0c90452fbd5a38c8d83 /gdb/symtab.h
parent358d6ab39c95691e721820fd54e9780208faf252 (diff)
downloadfsf-binutils-gdb-24d864bb955adc2ecd2103dd7a0dbf9cdfd37010.zip
fsf-binutils-gdb-24d864bb955adc2ecd2103dd7a0dbf9cdfd37010.tar.gz
fsf-binutils-gdb-24d864bb955adc2ecd2103dd7a0dbf9cdfd37010.tar.bz2
Rename lookup_symbol_static to lookup_symbol_in_static_block,
and lookup_static_symbol_aux to lookup_static_symbol. gdb/ChangeLog: * symtab.c (lookup_static_symbol): Renamed from lookup_static_symbol_aux. All callers updated. (lookup_symbol_in_static_block): Renamed from lookup_symbol_static. All callers updated.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 7fa42a6..1d95258 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -1092,9 +1092,9 @@ extern struct symbol *basic_lookup_symbol_nonlocal (const char *,
Upon success sets BLOCK_FOUND and fixes up the symbol's section
if necessary. */
-extern struct symbol *lookup_symbol_static (const char *name,
- const struct block *block,
- const domain_enum domain);
+extern struct symbol *lookup_symbol_in_static_block (const char *name,
+ const struct block *block,
+ const domain_enum domain);
/* Lookup a symbol in all files' global blocks.
Upon success sets BLOCK_FOUND and fixes up the symbol's section
@@ -1122,8 +1122,8 @@ extern struct symbol *lookup_language_this (const struct language_defn *lang,
Upon success sets BLOCK_FOUND and fixes up the symbol's section
if necessary. */
-extern struct symbol *lookup_static_symbol_aux (const char *name,
- const domain_enum domain);
+extern struct symbol *lookup_static_symbol (const char *name,
+ const domain_enum domain);
/* Lookup a [struct, union, enum] by name, within a specified block. */