symtab.h (SYMTAB_BLOCKVECTOR): Renamed from BLOCKVECTOR. All uses updated.
gdb/ChangeLog: * symtab.h (SYMTAB_BLOCKVECTOR): Renamed from BLOCKVECTOR. All uses updated.
This commit is contained in:
parent
4d663531f2
commit
439247b656
22 changed files with 76 additions and 62 deletions
|
@ -184,7 +184,7 @@ stpy_global_block (PyObject *self, PyObject *args)
|
|||
|
||||
STPY_REQUIRE_VALID (self, symtab);
|
||||
|
||||
blockvector = BLOCKVECTOR (symtab);
|
||||
blockvector = SYMTAB_BLOCKVECTOR (symtab);
|
||||
block = BLOCKVECTOR_BLOCK (blockvector, GLOBAL_BLOCK);
|
||||
return block_to_block_object (block, SYMTAB_OBJFILE (symtab));
|
||||
}
|
||||
|
@ -200,7 +200,7 @@ stpy_static_block (PyObject *self, PyObject *args)
|
|||
|
||||
STPY_REQUIRE_VALID (self, symtab);
|
||||
|
||||
blockvector = BLOCKVECTOR (symtab);
|
||||
blockvector = SYMTAB_BLOCKVECTOR (symtab);
|
||||
block = BLOCKVECTOR_BLOCK (blockvector, STATIC_BLOCK);
|
||||
return block_to_block_object (block, SYMTAB_OBJFILE (symtab));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue