diff options
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 2a92cf0..54aed6c 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -241,19 +241,10 @@ regcache_get_ptid (const struct regcache *regcache) return regcache->ptid (); } -void -regcache_xfree (struct regcache *regcache) -{ - if (regcache == NULL) - return; - - delete regcache; -} - static void do_regcache_xfree (void *data) { - regcache_xfree ((struct regcache *) data); + delete (struct regcache *) data; } struct cleanup * |