From d5a71b1131778cf2a023855966831eb2457d50d6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 12 Aug 2016 22:12:41 +0800 Subject: sim: cgen: move cgen_cpu_max_extra_bytes logic into the common code Every arch handles this the same way, so move it to the common code. This will also make unifying the sim_cpu structure easier. --- sim/d10v/ChangeLog | 4 ++++ sim/d10v/interp.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'sim/d10v') diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index 835c1a9..e05746f 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2021-04-12 Mike Frysinger + + * interp.c (sim_open): Delete 3rd arg to sim_cpu_alloc_all. + 2021-04-02 Mike Frysinger * aclocal.m4, configure: Regenerate. diff --git a/sim/d10v/interp.c b/sim/d10v/interp.c index 276c76b..4fa2069 100644 --- a/sim/d10v/interp.c +++ b/sim/d10v/interp.c @@ -751,7 +751,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *cb, SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER); /* The cpu data is kept in a separately allocated chunk of memory. */ - if (sim_cpu_alloc_all (sd, 1, /*cgen_cpu_max_extra_bytes ()*/0) != SIM_RC_OK) + if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK) { free_state (sd); return 0; -- cgit v1.1