mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
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>
This commit is contained in:
@ -2061,7 +2061,7 @@ m32c_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
||||
for (i = nargs - 1; i >= 0; i--)
|
||||
{
|
||||
struct value *arg = args[i];
|
||||
const gdb_byte *arg_bits = value_contents (arg).data ();
|
||||
const gdb_byte *arg_bits = arg->contents ().data ();
|
||||
struct type *arg_type = arg->type ();
|
||||
ULONGEST arg_size = arg_type->length ();
|
||||
|
||||
|
Reference in New Issue
Block a user