mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45: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:
@ -383,7 +383,7 @@ m2_value_print_inner (struct value *val, struct ui_file *stream, int recurse,
|
||||
case TYPE_CODE_SET:
|
||||
elttype = type->index_type ();
|
||||
elttype = check_typedef (elttype);
|
||||
if (TYPE_STUB (elttype))
|
||||
if (elttype->is_stub ())
|
||||
{
|
||||
fprintf_styled (stream, metadata_style.style (),
|
||||
_("<incomplete type>"));
|
||||
|
Reference in New Issue
Block a user