aboutsummaryrefslogtreecommitdiff
path: root/gdb/sparc-tdep.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-31 07:52:09 -0700
committerTom Tromey <tom@tromey.com>2023-02-13 15:21:06 -0700
commitd0c9791728caa0d3b3270a997c7fd97919976c97 (patch)
tree1753b7232efa89e05696d4289d60ad019fc161e4 /gdb/sparc-tdep.c
parent7cf57bc5be656c62cc6b80280a9eddad2b8ded3f (diff)
downloadfsf-binutils-gdb-d0c9791728caa0d3b3270a997c7fd97919976c97.zip
fsf-binutils-gdb-d0c9791728caa0d3b3270a997c7fd97919976c97.tar.gz
fsf-binutils-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/sparc-tdep.c')
-rw-r--r--gdb/sparc-tdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/sparc-tdep.c b/gdb/sparc-tdep.c
index bd3dc94..6c41cfd 100644
--- a/gdb/sparc-tdep.c
+++ b/gdb/sparc-tdep.c
@@ -621,7 +621,7 @@ sparc32_store_arguments (struct regcache *regcache, int nargs,
for (i = 0; i < nargs; i++)
{
- struct type *type = value_type (args[i]);
+ struct type *type = args[i]->type ();
int len = type->length ();
if (sparc_arg_by_memory_p (type))
@@ -665,7 +665,7 @@ sparc32_store_arguments (struct regcache *regcache, int nargs,
for (i = 0; i < nargs; i++)
{
const bfd_byte *valbuf = value_contents (args[i]).data ();
- struct type *type = value_type (args[i]);
+ struct type *type = args[i]->type ();
int len = type->length ();
gdb_byte buf[4];