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:
Simon Marchi 2020-09-14 11:08:01 -04:00
parent 27e69b7aed
commit 7f9f399b34
8 changed files with 16 additions and 13 deletions

View file

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