diff options
author | Tom Tromey <tom@tromey.com> | 2017-09-23 15:34:30 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-09-25 19:54:07 -0600 |
commit | 9ac86b52da268147b2565e4920357432bb7a34c3 (patch) | |
tree | ecd744af89f932b6cad7bfcce62c28a91c33e85a /gdb/spu-tdep.c | |
parent | c0e383c63818baee1daf51b8fb1bae34d1e0597f (diff) | |
download | gdb-9ac86b52da268147b2565e4920357432bb7a34c3.zip gdb-9ac86b52da268147b2565e4920357432bb7a34c3.tar.gz gdb-9ac86b52da268147b2565e4920357432bb7a34c3.tar.bz2 |
Remove make_cleanup_regcache_xfree
This removes make_cleanup_regcache_xfree in favor of using
std::unique_ptr as the return type of frame_save_as_regcache.
gdb/ChangeLog
2017-09-25 Tom Tromey <tom@tromey.com>
* spu-tdep.c (spu2ppu_sniffer): Update.
* regcache.h (make_cleanup_regcache_xfree): Don't declare.
* regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
Remove.
* ppc-linux-tdep.c (ppu2spu_sniffer): Update.
* mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
* frame.h (frame_save_as_regcache): Return std::unique_ptr.
* frame.c (frame_save_as_regcache): Return std::unique_ptr.
(frame_pop): Update.
Diffstat (limited to 'gdb/spu-tdep.c')
-rw-r--r-- | gdb/spu-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index f77e37f..6d7a35e 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -1267,7 +1267,7 @@ spu2ppu_sniffer (const struct frame_unwind *self, if (fi) { - cache->regcache = frame_save_as_regcache (fi); + cache->regcache = frame_save_as_regcache (fi).release (); *this_prologue_cache = cache; return 1; } |