mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 16:53:50 +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:
@ -2589,7 +2589,7 @@ riscv_push_dummy_call (struct gdbarch *gdbarch,
|
||||
arg_type = check_typedef (value_type (arg_value));
|
||||
|
||||
riscv_arg_location (gdbarch, info, &call_info, arg_type,
|
||||
TYPE_VARARGS (ftype) && i >= ftype->num_fields ());
|
||||
ftype->has_varargs () && i >= ftype->num_fields ());
|
||||
|
||||
if (info->type != arg_type)
|
||||
arg_value = value_cast (info->type, arg_value);
|
||||
|
Reference in New Issue
Block a user