diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-31 13:53:55 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:22:04 -0700 |
commit | 78259c365fb3c8e4fba9c19020fb8bdd8546c9f9 (patch) | |
tree | a9ed03e77f218d92e18fddf68a7f4ba8581f1af9 /gdb/gnu-v2-abi.c | |
parent | bbe912ba8898f5440028a35d0a206d70a6877ed6 (diff) | |
download | gdb-78259c365fb3c8e4fba9c19020fb8bdd8546c9f9.zip gdb-78259c365fb3c8e4fba9c19020fb8bdd8546c9f9.tar.gz gdb-78259c365fb3c8e4fba9c19020fb8bdd8546c9f9.tar.bz2 |
Turn value_fetch_lazy into a method
This changes value_fetch_lazy to be a method of value. A few helper
functions are converted as well, to avoid problems in later patches
when the data members are all made private.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/gnu-v2-abi.c')
-rw-r--r-- | gdb/gnu-v2-abi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gnu-v2-abi.c b/gdb/gnu-v2-abi.c index 908581a..4636ad5 100644 --- a/gdb/gnu-v2-abi.c +++ b/gdb/gnu-v2-abi.c @@ -164,7 +164,7 @@ gnuv2_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j, if (!arg1->lazy ()) { arg1->set_lazy (1); - value_fetch_lazy (arg1); + arg1->fetch_lazy (); } vfn = value_field (entry, 2); |