mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
Turn some value_contents functions into methods
This turns value_contents_raw, value_contents_writeable, and value_contents_all_raw into methods on value. The remaining functions will be changed later in the series; they were a bit trickier and so I didn't include them in this patch. Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
@ -410,7 +410,7 @@ amd64_windows_return_value (struct gdbarch *gdbarch, struct value *function,
|
||||
{
|
||||
*read_value = value::allocate (type);
|
||||
regcache->raw_read_part (regnum, 0, len,
|
||||
value_contents_raw (*read_value).data ());
|
||||
(*read_value)->contents_raw ().data ());
|
||||
}
|
||||
if (writebuf)
|
||||
regcache->raw_write_part (regnum, 0, len, writebuf);
|
||||
|
Reference in New Issue
Block a user