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/rust-lang.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/rust-lang.c') diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c index cca2baa..a5be110 100644 --- a/gdb/rust-lang.c +++ b/gdb/rust-lang.c @@ -456,7 +456,7 @@ rust_language::print_enum (struct value *val, struct ui_file *stream, gdb_assert (rust_enum_p (type)); gdb::array_view view - (value_contents_for_printing (val).data (), + (val->contents_for_printing ().data (), val->type ()->length ()); type = resolve_dynamic_type (type, view, val->address ()); @@ -585,7 +585,7 @@ rust_language::value_print_inner encoding. */ gdb_puts ("b", stream); printstr (stream, type->target_type (), - value_contents_for_printing (val).data (), + val->contents_for_printing ().data (), high_bound - low_bound + 1, "ASCII", 0, &opts); } break; @@ -1374,7 +1374,7 @@ rust_struct_anon::evaluate (struct type *expect_type, if (rust_enum_p (type)) { - type = resolve_dynamic_type (type, value_contents (lhs), + type = resolve_dynamic_type (type, lhs->contents (), lhs->address ()); if (rust_empty_enum_p (type)) @@ -1437,7 +1437,7 @@ rust_structop::evaluate (struct type *expect_type, struct type *type = lhs->type (); if (type->code () == TYPE_CODE_STRUCT && rust_enum_p (type)) { - type = resolve_dynamic_type (type, value_contents (lhs), + type = resolve_dynamic_type (type, lhs->contents (), lhs->address ()); if (rust_empty_enum_p (type)) -- cgit v1.1