diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-08-12 22:12:41 +0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-12 00:14:32 -0400 |
commit | d5a71b1131778cf2a023855966831eb2457d50d6 (patch) | |
tree | 77243d6b326ca6dfa0ebb60446a9bc518b11617e /sim/lm32 | |
parent | 32d715691aa037f2838b41fa257c2e239d67c134 (diff) | |
download | gdb-d5a71b1131778cf2a023855966831eb2457d50d6.zip gdb-d5a71b1131778cf2a023855966831eb2457d50d6.tar.gz gdb-d5a71b1131778cf2a023855966831eb2457d50d6.tar.bz2 |
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.
Diffstat (limited to 'sim/lm32')
-rw-r--r-- | sim/lm32/ChangeLog | 4 | ||||
-rw-r--r-- | sim/lm32/sim-if.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index 92e86af..32766f0 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2021-04-12 Mike Frysinger <vapier@gentoo.org> + + * sim-if.c (sim_open): Delete 3rd arg to sim_cpu_alloc_all. + 2021-04-08 Tom Tromey <tom@tromey.com> * sim-if.c (sim_open, sim_create_inferior): Use new-style diff --git a/sim/lm32/sim-if.c b/sim/lm32/sim-if.c index 398eb60..c97a451 100644 --- a/sim/lm32/sim-if.c +++ b/sim/lm32/sim-if.c @@ -89,7 +89,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, struct bfd *abfd, unsigned long base, limit; /* The cpu data is kept in a separately allocated chunk of memory. */ - if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK) + if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK) { free_state (sd); return 0; |