From efaf1ae025cbef5438d2fe943dd010b773d757ac Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 31 Jan 2023 14:38:30 -0700 Subject: 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 --- gdb/guile/scm-value.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/guile') diff --git a/gdb/guile/scm-value.c b/gdb/guile/scm-value.c index 09b1ce3..df76f8a 100644 --- a/gdb/guile/scm-value.c +++ b/gdb/guile/scm-value.c @@ -828,7 +828,7 @@ gdbscm_value_to_bytevector (SCM self) { type = check_typedef (type); length = type->length (); - contents = value_contents (value).data (); + contents = value->contents ().data (); } catch (const gdb_exception &except) { @@ -978,7 +978,7 @@ gdbscm_value_to_real (SCM self) { if (is_floating_value (value)) { - d = target_float_to_host_double (value_contents (value).data (), + d = target_float_to_host_double (value->contents ().data (), type); check = value_from_host_double (type, d); } -- cgit v1.1