mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +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:
@ -153,7 +153,7 @@ convert_func (compile_c_instance *context, struct type *type)
|
||||
int i;
|
||||
gcc_type result, return_type;
|
||||
struct gcc_type_array array;
|
||||
int is_varargs = TYPE_VARARGS (type) || !type->is_prototyped ();
|
||||
int is_varargs = type->has_varargs () || !type->is_prototyped ();
|
||||
|
||||
struct type *target_type = TYPE_TARGET_TYPE (type);
|
||||
|
||||
|
Reference in New Issue
Block a user