mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-25 16:57:52 +00:00
gdb: remove TYPE_PROTOTYPED
gdb/ChangeLog: * gdbtypes.h (TYPE_PROTOTYPED): Remove, replace all uses with type::is_prototyped. Change-Id: Ic96b19c24ce5afcd7e1302a75c39909767e4d885
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_PROTOTYPED (type);
|
||||
int is_varargs = TYPE_VARARGS (type) || !type->is_prototyped ();
|
||||
|
||||
struct type *target_type = TYPE_TARGET_TYPE (type);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user