summaryrefslogtreecommitdiff
path: root/gdb/infcall.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-31 14:38:30 -0700
committerTom Tromey <tom@tromey.com>2023-02-13 15:22:16 -0700
commitefaf1ae025cbef5438d2fe943dd010b773d757ac (patch)
treed51e1d379430439462d5cb1358c642e679647f12 /gdb/infcall.c
parentcdf3de175d41acec85d6c3cc8b599f79658edb06 (diff)
downloadbinutils-gdb-efaf1ae025cbef5438d2fe943dd010b773d757ac.tar.gz
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>
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r--gdb/infcall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c
index 05ae1638857..d6992228498 100644
--- a/gdb/infcall.c
+++ b/gdb/infcall.c
@@ -1130,7 +1130,7 @@ call_function_by_hand_dummy (struct value *function,
if (info.trivially_copy_constructible)
{
int length = param_type->length ();
- write_memory (addr, value_contents (args[i]).data (), length);
+ write_memory (addr, args[i]->contents ().data (), length);
}
else
{