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:
Simon Marchi
2020-09-14 11:08:07 -04:00
parent 9cdd0d12cc
commit 22c4c60c86
4 changed files with 22 additions and 19 deletions

View File

@ -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");
}