aboutsummaryrefslogtreecommitdiff
path: root/sim/sh64/sim-if.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-03-22 23:10:09 -0400
committerMike Frysinger <vapier@gentoo.org>2015-11-15 02:30:19 -0500
commit6e4f085c7f459e0777a71bcb61ed3aa8257fa386 (patch)
treee2d1bc33b00d55f6765b8cc8cebb41b4cda7cb81 /sim/sh64/sim-if.c
parent1bd1b714219e1c8324cc2fb5feb4496e80b6adfd (diff)
downloadfsf-binutils-gdb-6e4f085c7f459e0777a71bcb61ed3aa8257fa386.zip
fsf-binutils-gdb-6e4f085c7f459e0777a71bcb61ed3aa8257fa386.tar.gz
fsf-binutils-gdb-6e4f085c7f459e0777a71bcb61ed3aa8257fa386.tar.bz2
sim: sim-close: unify sim_close logic
Other than the nice advantage of all sims having to declare one fewer common function, this also fixes leakage in pretty much every sim. Many were not freeing any resources, and a few were inconsistent as to the ones they did. Now we have a single module that takes care of all the logic for us. Most of the non-cgen based ones could be deleted outright. The cgen ones required adding a callback to the arch-specific cleanup func. The few that still have close callbacks are to manage their internal state. We do not convert erc32, m32c, ppc, rl78, or rx as they do not use the common sim core.
Diffstat (limited to 'sim/sh64/sim-if.c')
-rw-r--r--sim/sh64/sim-if.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sim/sh64/sim-if.c b/sim/sh64/sim-if.c
index 200552d..29e0936 100644
--- a/sim/sh64/sim-if.c
+++ b/sim/sh64/sim-if.c
@@ -161,15 +161,6 @@ sim_open (kind, callback, abfd, argv)
return sd;
}
-
-void
-sim_close (sd, quitting)
- SIM_DESC sd;
- int quitting;
-{
- sh_cgen_cpu_close (CPU_CPU_DESC (STATE_CPU (sd, 0)));
- sim_module_uninstall (sd);
-}
SIM_RC
sim_create_inferior (sd, abfd, argv, envp)