diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-11-17 00:19:56 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-11-17 23:12:58 -0500 |
commit | cdf850e9d953f765f600e1ecae61664eab5ae7f1 (patch) | |
tree | e1c1cdd1a624d9f7c8b55143b73e9b131b034bde /sim/v850 | |
parent | 8fd3fe9331ea62972272f0f9f7dfcb7d39a7d2f5 (diff) | |
download | binutils-gdb-cdf850e9d953f765f600e1ecae61664eab5ae7f1.tar.gz |
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.
Diffstat (limited to 'sim/v850')
-rw-r--r-- | sim/v850/ChangeLog | 4 | ||||
-rw-r--r-- | sim/v850/sim-main.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 6e94282447a..7efd9d15bc3 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2015-11-17 Mike Frysinger <vapier@gentoo.org> + + * sim-main.h (WITH_MODULO_MEMORY): Delete. + 2015-11-15 Mike Frysinger <vapier@gentoo.org> * Makefile.in (SIM_OBJS): Delete sim-reason.o and sim-stop.o. diff --git a/sim/v850/sim-main.h b/sim/v850/sim-main.h index 5127d280102..0c041ba2ccd 100644 --- a/sim/v850/sim-main.h +++ b/sim/v850/sim-main.h @@ -4,7 +4,6 @@ /* General config options */ #define WITH_CORE -#define WITH_MODULO_MEMORY 1 #define WITH_WATCHPOINTS 1 |