mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 11:00:01 +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:
@ -707,11 +707,11 @@ m32r_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
||||
{
|
||||
/* Value gets right-justified in the register or stack word. */
|
||||
memcpy (valbuf + (register_size (gdbarch, argreg) - len),
|
||||
(gdb_byte *) value_contents (args[argnum]).data (), len);
|
||||
(gdb_byte *) args[argnum]->contents ().data (), len);
|
||||
val = valbuf;
|
||||
}
|
||||
else
|
||||
val = (gdb_byte *) value_contents (args[argnum]).data ();
|
||||
val = (gdb_byte *) args[argnum]->contents ().data ();
|
||||
|
||||
while (len > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user