mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
gdb: remove TYPE_FIXED_INSTANCE
gdb/ChangeLog: * gdbtypes.h (TYPE_FIXED_INSTANCE): Remove, replace all uses with type::is_fixed_instance. Change-Id: I57731b5ab44aac7d8896a32b9c7481891baea51a
This commit is contained in:
@ -5099,7 +5099,7 @@ recursive_dump_type (struct type *type, int spaces)
|
||||
{
|
||||
puts_filtered (" TYPE_VECTOR");
|
||||
}
|
||||
if (TYPE_FIXED_INSTANCE (type))
|
||||
if (type->is_fixed_instance ())
|
||||
{
|
||||
puts_filtered (" TYPE_FIXED_INSTANCE");
|
||||
}
|
||||
|
Reference in New Issue
Block a user