mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-25 11:16:56 +08:00
gdb: remove TYPE_STUB
gdb/ChangeLog: * gdbtypes.h (TYPE_STUB): Remove, replace all uses with type::is_stub. Change-Id: Iec25b50449a0d10a38f815209e478c343e98632c
This commit is contained in:
@ -1363,7 +1363,7 @@ type_to_type_object (struct type *type)
|
||||
try
|
||||
{
|
||||
/* Try not to let stub types leak out to Python. */
|
||||
if (TYPE_STUB (type))
|
||||
if (type->is_stub ())
|
||||
type = check_typedef (type);
|
||||
}
|
||||
catch (...)
|
||||
|
Reference in New Issue
Block a user