mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
gdb: remove TYPE_PROTOTYPED
gdb/ChangeLog: * gdbtypes.h (TYPE_PROTOTYPED): Remove, replace all uses with type::is_prototyped. Change-Id: Ic96b19c24ce5afcd7e1302a75c39909767e4d885
This commit is contained in:
@ -5084,7 +5084,7 @@ recursive_dump_type (struct type *type, int spaces)
|
||||
{
|
||||
puts_filtered (" TYPE_TARGET_STUB");
|
||||
}
|
||||
if (TYPE_PROTOTYPED (type))
|
||||
if (type->is_prototyped ())
|
||||
{
|
||||
puts_filtered (" TYPE_PROTOTYPED");
|
||||
}
|
||||
|
Reference in New Issue
Block a user