mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
gdb: remove symtab::blockvector
symtab::blockvector is a wrapper around compunit_symtab::blockvector. It is a bit misleadnig, as it gives the impression that a symtab has a blockvector. Remove it, change all users to fetch the blockvector through the compunit instead. Change-Id: Ibd062cd7926112a60d52899dff9224591cbdeebf
This commit is contained in:
@ -181,7 +181,7 @@ stpy_global_block (PyObject *self, PyObject *args)
|
||||
|
||||
STPY_REQUIRE_VALID (self, symtab);
|
||||
|
||||
blockvector = symtab->blockvector ();
|
||||
blockvector = symtab->compunit ()->blockvector ();
|
||||
block = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
|
||||
return block_to_block_object (block, symtab->objfile ());
|
||||
}
|
||||
@ -197,7 +197,7 @@ stpy_static_block (PyObject *self, PyObject *args)
|
||||
|
||||
STPY_REQUIRE_VALID (self, symtab);
|
||||
|
||||
blockvector = symtab->blockvector ();
|
||||
blockvector = symtab->compunit ()->blockvector ();
|
||||
block = BLOCKVECTOR_BLOCK (blockvector, STATIC_BLOCK);
|
||||
return block_to_block_object (block, symtab->objfile ());
|
||||
}
|
||||
|
Reference in New Issue
Block a user