diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2018-12-31 17:44:17 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-01-03 21:24:01 +0000 |
commit | 26089c494f0d6fa8d4afeab2e2e53b25d299bb9f (patch) | |
tree | 4b4c2614dce17babacfca2d22d67e24e4341b788 /gdb/valops.c | |
parent | 06d3e5b0046d69e3da3450d2eb07c29f0c1a189a (diff) | |
download | binutils-26089c494f0d6fa8d4afeab2e2e53b25d299bb9f.zip binutils-26089c494f0d6fa8d4afeab2e2e53b25d299bb9f.tar.gz binutils-26089c494f0d6fa8d4afeab2e2e53b25d299bb9f.tar.bz2 |
gdb: Remove final cleanup from find_overload_match
This patch removes the setup of a null_cleanup in
valops.c:find_overload_match, and all the calls to do_cleanups.
gdb/ChangeLog:
* valops.c (find_overload_match): Remove use of null_cleanup, and
calls to do_cleanups.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 1a9d6a6..75ff705 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -2516,8 +2516,6 @@ find_overload_match (gdb::array_view<value *> args, struct type *basetype = NULL; LONGEST boffset; - struct cleanup *all_cleanups = make_cleanup (null_cleanup, NULL); - const char *obj_type_name = NULL; const char *func_name = NULL; gdb::unique_xmalloc_ptr<char> temp_func; @@ -2547,7 +2545,6 @@ find_overload_match (gdb::array_view<value *> args, if (*valp) { *staticp = 1; - do_cleanups (all_cleanups); return 0; } } @@ -2693,7 +2690,6 @@ find_overload_match (gdb::array_view<value *> args, if (func_name == NULL) { *symp = fsym; - do_cleanups (all_cleanups); return 0; } @@ -2820,8 +2816,6 @@ find_overload_match (gdb::array_view<value *> args, *objp = temp; } - do_cleanups (all_cleanups); - switch (match_quality) { case INCOMPATIBLE: |