summaryrefslogtreecommitdiff
path: root/sim/m32r
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-04-18 04:38:33 -0400
committerMike Frysinger <vapier@gentoo.org>2015-04-18 04:40:27 -0400
commit3ebe2863f79e04d841e6b97594ec032d2bfad1b8 (patch)
tree063ca8ca4b1d09200b23299012846112b282b972 /sim/m32r
parente8d3a34fee495d7d44e6bf8e13d472b33f847635 (diff)
sim: clean up duplicate sim-engine hooks
Now that we've unified sim-cpu, we can delete the duplicate sim-engine hooks -- these targets defined these only because they didn't fully implement the sim-cpu callbacks.
Diffstat (limited to 'sim/m32r')
-rw-r--r--sim/m32r/ChangeLog4
-rw-r--r--sim/m32r/sim-main.h11
2 files changed, 4 insertions, 11 deletions
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog
index 397f3a852f..c85b181af7 100644
--- a/sim/m32r/ChangeLog
+++ b/sim/m32r/ChangeLog
@@ -1,5 +1,9 @@
2015-04-18 Mike Frysinger <vapier@gentoo.org>
+ * sim-main.h (SIM_ENGINE_HALT_HOOK, SIM_ENGINE_RESTART_HOOK): Delete.
+
+2015-04-18 Mike Frysinger <vapier@gentoo.org>
+
* sim-main.h (USING_SIM_BASE_H): Delete.
2015-04-18 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/m32r/sim-main.h b/sim/m32r/sim-main.h
index 0f539a0f73..cd39e98c02 100644
--- a/sim/m32r/sim-main.h
+++ b/sim/m32r/sim-main.h
@@ -9,17 +9,6 @@
#include "m32r-desc.h"
#include "m32r-opc.h"
#include "arch.h"
-
-#define SIM_ENGINE_HALT_HOOK(sd, cpu, cia) \
-do { \
- if (cpu) /* null if ctrl-c */ \
- sim_pc_set ((cpu), (cia)); \
-} while (0)
-#define SIM_ENGINE_RESTART_HOOK(sd, cpu, cia) \
-do { \
- sim_pc_set ((cpu), (cia)); \
-} while (0)
-
#include "sim-base.h"
#include "cgen-sim.h"
#include "m32r-sim.h"