diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-31 07:52:09 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:21:06 -0700 |
commit | d0c9791728caa0d3b3270a997c7fd97919976c97 (patch) | |
tree | 1753b7232efa89e05696d4289d60ad019fc161e4 /gdb/riscv-tdep.c | |
parent | 7cf57bc5be656c62cc6b80280a9eddad2b8ded3f (diff) | |
download | gdb-d0c9791728caa0d3b3270a997c7fd97919976c97.zip gdb-d0c9791728caa0d3b3270a997c7fd97919976c97.tar.gz gdb-d0c9791728caa0d3b3270a997c7fd97919976c97.tar.bz2 |
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 <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/riscv-tdep.c')
-rw-r--r-- | gdb/riscv-tdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/riscv-tdep.c b/gdb/riscv-tdep.c index 60de603..d34eb56 100644 --- a/gdb/riscv-tdep.c +++ b/gdb/riscv-tdep.c @@ -1116,7 +1116,7 @@ riscv_print_one_register_info (struct gdbarch *gdbarch, try { val = value_of_register (regnum, frame); - regtype = value_type (val); + regtype = val->type (); } catch (const gdb_exception_error &ex) { @@ -3047,7 +3047,7 @@ riscv_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR osp = sp; - struct type *ftype = check_typedef (value_type (function)); + struct type *ftype = check_typedef (function->type ()); if (ftype->code () == TYPE_CODE_PTR) ftype = check_typedef (ftype->target_type ()); @@ -3063,7 +3063,7 @@ riscv_push_dummy_call (struct gdbarch *gdbarch, struct riscv_arg_info *info = &arg_info[i]; arg_value = args[i]; - arg_type = check_typedef (value_type (arg_value)); + arg_type = check_typedef (arg_value->type ()); riscv_arg_location (gdbarch, info, &call_info, arg_type, ftype->has_varargs () && i >= ftype->num_fields ()); @@ -3380,7 +3380,7 @@ riscv_return_value (struct gdbarch *gdbarch, type of ABI_VAL will differ from ARG_TYPE due to dynamic type resolution, and so will most likely fail. */ - arg_type = value_type (abi_val); + arg_type = abi_val->type (); } if (writebuf != nullptr) write_memory (addr, writebuf, info.length); |