From cdf850e9d953f765f600e1ecae61664eab5ae7f1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 17 Nov 2015 00:19:56 -0800 Subject: sim: always enable modulo memory Having this be a config option doesn't make sense: the code size is pretty much the same (as all the logic is still active), and if it's disabled, the sim throws an error if you try to use it. That means we can't break sims that weren't using it before by enabling it all the time. --- sim/bfin/ChangeLog | 4 ++++ sim/bfin/tconfig.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sim/bfin') diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 4445006..ac4b774 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2015-11-17 Mike Frysinger + + * tconfig.h (WITH_MODULO_MEMORY): Delete. + 2015-11-15 Mike Frysinger * Makefile.in (SIM_OBJS): Delete sim-reason.o, sim-reg.o, and diff --git a/sim/bfin/tconfig.h b/sim/bfin/tconfig.h index d28fd8d..a3e6f7b 100644 --- a/sim/bfin/tconfig.h +++ b/sim/bfin/tconfig.h @@ -9,7 +9,3 @@ /* ??? Temporary hack until model support unified. */ #define SIM_HAVE_MODEL - -/* Allows us to do the memory aliasing that some bfroms have: - {0xef000000 - 0xef100000} => {0xef000000 - 0xef000800} */ -#define WITH_MODULO_MEMORY 1 -- cgit v1.1