Rename lookup_symbol_global to lookup_global_symbol.

gdb/ChangeLog:

	* symtab.c (lookup_global_symbol): Renamed from lookup_symbol_global.
	All callers updated.
	* symtab.h (lookup_global_symbol): Update decl.
	(lookup_static_symbol): Move decl to better location.
This commit is contained in:
Doug Evans 2014-11-06 23:48:18 -08:00
parent d9060ba60d
commit 08724ab7ca
7 changed files with 22 additions and 15 deletions

View file

@ -433,7 +433,7 @@ gdbpy_lookup_global_symbol (PyObject *self, PyObject *args, PyObject *kw)
TRY_CATCH (except, RETURN_MASK_ALL)
{
symbol = lookup_symbol_global (name, NULL, domain);
symbol = lookup_global_symbol (name, NULL, domain);
}
GDB_PY_HANDLE_EXCEPTION (except);