mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +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:
@ -2181,7 +2181,7 @@ default_print_one_register_info (struct ui_file *file,
|
||||
|| regtype->code () == TYPE_CODE_DECFLOAT)
|
||||
{
|
||||
struct value_print_options opts;
|
||||
const gdb_byte *valaddr = value_contents_for_printing (val).data ();
|
||||
const gdb_byte *valaddr = val->contents_for_printing ().data ();
|
||||
enum bfd_endian byte_order = type_byte_order (regtype);
|
||||
|
||||
get_user_print_options (&opts);
|
||||
|
Reference in New Issue
Block a user