mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-07 16:14:12 +08:00
gdb: remove TYPE_VARARGS
gdb/ChangeLog: * gdbtypes.h (TYPE_VARARGS): Remove, replace all uses with type::has_varargs. Change-Id: Ieea4a64b4bfa4b8be643e68cb403081881133740
This commit is contained in:
@ -779,7 +779,7 @@ rust_internal_print_type (struct type *type, const char *varstring,
|
||||
|
||||
case TYPE_CODE_FUNC:
|
||||
/* Delegate varargs to the C printer. */
|
||||
if (TYPE_VARARGS (type))
|
||||
if (type->has_varargs ())
|
||||
goto c_printer;
|
||||
|
||||
fputs_filtered ("fn ", stream);
|
||||
|
Reference in New Issue
Block a user