mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +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:
@ -734,7 +734,7 @@ static struct value *
|
||||
gnuv3_method_ptr_to_value (struct value **this_p, struct value *method_ptr)
|
||||
{
|
||||
struct gdbarch *gdbarch;
|
||||
const gdb_byte *contents = value_contents (method_ptr).data ();
|
||||
const gdb_byte *contents = method_ptr->contents ().data ();
|
||||
CORE_ADDR ptr_value;
|
||||
struct type *self_type, *final_type, *method_type;
|
||||
LONGEST adjustment;
|
||||
|
Reference in New Issue
Block a user