From d0c9791728caa0d3b3270a997c7fd97919976c97 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 31 Jan 2023 07:52:09 -0700 Subject: Turn value_type into method This changes value_type to be a method of value. Much of this patch was written by script. Approved-By: Simon Marchi --- gdb/avr-tdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/avr-tdep.c') diff --git a/gdb/avr-tdep.c b/gdb/avr-tdep.c index fa76a3d..023ebc3 100644 --- a/gdb/avr-tdep.c +++ b/gdb/avr-tdep.c @@ -1298,7 +1298,7 @@ avr_push_dummy_call (struct gdbarch *gdbarch, struct value *function, int last_regnum; int j; struct value *arg = args[i]; - struct type *type = check_typedef (value_type (arg)); + struct type *type = check_typedef (arg->type ()); const bfd_byte *contents = value_contents (arg).data (); int len = type->length (); -- cgit v1.1