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:
parent
1d6286ed04
commit
a409645d13
17 changed files with 30 additions and 27 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue