mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 08:38:10 +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:
@ -686,7 +686,7 @@ rx_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
||||
requiring multiple registers, etc. We rely instead on the value
|
||||
of the ``arg_reg'' variable to get these other details correct. */
|
||||
|
||||
if (TYPE_VARARGS (func_type))
|
||||
if (func_type->has_varargs ())
|
||||
num_register_candidate_args = func_type->num_fields () - 1;
|
||||
else
|
||||
num_register_candidate_args = 4;
|
||||
|
Reference in New Issue
Block a user