diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-31 21:11:38 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:22:17 -0700 |
commit | e3fb3c4772d81a7deb26a3c1af253e9f01b07716 (patch) | |
tree | 929a9b816440664b716aa40c720a2636fd3a65e3 /gdb/python/py-value.c | |
parent | 6bd5c75435099f09bf1b2027e118f66a6fd94218 (diff) | |
download | binutils-e3fb3c4772d81a7deb26a3c1af253e9f01b07716.zip binutils-e3fb3c4772d81a7deb26a3c1af253e9f01b07716.tar.gz binutils-e3fb3c4772d81a7deb26a3c1af253e9f01b07716.tar.bz2 |
Turn preserve_one_value into method
This changes preserve_one_value to be a method of value. Much of this
patch was written by script.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/python/py-value.c')
-rw-r--r-- | gdb/python/py-value.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index 6c33e35..658a9a3 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -228,7 +228,7 @@ gdbpy_preserve_values (const struct extension_language_defn *extlang, value_object *iter; for (iter = values_in_python; iter; iter = iter->next) - preserve_one_value (iter->value, objfile, copied_types); + iter->value->preserve (objfile, copied_types); } /* Given a value of a pointer type, apply the C unary * operator to it. */ |