diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-31 14:38:30 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:22:16 -0700 |
commit | efaf1ae025cbef5438d2fe943dd010b773d757ac (patch) | |
tree | d51e1d379430439462d5cb1358c642e679647f12 /gdb/rx-tdep.c | |
parent | cdf3de175d41acec85d6c3cc8b599f79658edb06 (diff) | |
download | binutils-efaf1ae025cbef5438d2fe943dd010b773d757ac.zip binutils-efaf1ae025cbef5438d2fe943dd010b773d757ac.tar.gz binutils-efaf1ae025cbef5438d2fe943dd010b773d757ac.tar.bz2 |
Turn remaining value_contents functions into methods
This turns the remaining value_contents functions -- value_contents,
value_contents_all, value_contents_for_printing, and
value_contents_for_printing_const -- into methods of value. It also
converts the static functions require_not_optimized_out and
require_available to be private methods.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/rx-tdep.c')
-rw-r--r-- | gdb/rx-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/rx-tdep.c b/gdb/rx-tdep.c index 67db30a..7bd469d 100644 --- a/gdb/rx-tdep.c +++ b/gdb/rx-tdep.c @@ -520,7 +520,7 @@ rx_frame_prev_register (frame_info_ptr this_frame, void **this_cache, psw_val = rx_frame_prev_register (this_frame, this_cache, RX_PSW_REGNUM); psw = extract_unsigned_integer - (value_contents_all (psw_val).data (), 4, + (psw_val->contents_all ().data (), 4, gdbarch_byte_order (get_frame_arch (this_frame))); if ((psw & 0x20000 /* U bit */) != 0) @@ -725,7 +725,7 @@ rx_push_dummy_call (struct gdbarch *gdbarch, struct value *function, for (i = 0; i < nargs; i++) { struct value *arg = args[i]; - const gdb_byte *arg_bits = value_contents_all (arg).data (); + const gdb_byte *arg_bits = arg->contents_all ().data (); struct type *arg_type = check_typedef (arg->type ()); ULONGEST arg_size = arg_type->length (); |