mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-02 12:37:05 +08:00
Replace symbol_symtab with symbol::symtab
This turns symbol_symtab into a method on symbol. It also replaces symbol_set_symtab with a method.
This commit is contained in:
@ -831,7 +831,7 @@ gdbpy_rbreak (PyObject *self, PyObject *args, PyObject *kw)
|
||||
|
||||
if (p.msymbol.minsym == NULL)
|
||||
{
|
||||
struct symtab *symtab = symbol_symtab (p.symbol);
|
||||
struct symtab *symtab = p.symbol->symtab ();
|
||||
const char *fullname = symtab_to_fullname (symtab);
|
||||
|
||||
symbol_name = fullname;
|
||||
|
Reference in New Issue
Block a user