diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-24 17:01:21 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-24 20:03:14 -0500 |
commit | 84e8e361dd3a3dd7314759f7f07927dac401d0e6 (patch) | |
tree | 8258689d3cd0636c5661b3892b5ec1d275627081 /sim/mips | |
parent | 3cabaf66d6ec7343bd3badc5c44c2ddd06221913 (diff) | |
download | binutils-gdb-84e8e361dd3a3dd7314759f7f07927dac401d0e6.tar.gz |
sim: enable watchpoint module everywhere
We build & bundle the watchpoint module everywhere, but we don't make
the command line flags available by default. A few targets opted in,
but most did not. Just enable the flag for everyone. Not all targets
will respect the flags (making them nops), but shouldn't be a big deal.
This is how we handle other common modules already.
Diffstat (limited to 'sim/mips')
-rw-r--r-- | sim/mips/ChangeLog | 4 | ||||
-rw-r--r-- | sim/mips/sim-main.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 34ab06d0442..93c1814e4ee 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,5 +1,9 @@ 2015-12-24 Mike Frysinger <vapier@gentoo.org> + * sim-main.h (WITH_WATCHPOINTS): Delete. + +2015-12-24 Mike Frysinger <vapier@gentoo.org> + * interp.c [SIM_HAVE_FLATMEM] (sim_open): Delete flatmem code. 2015-12-24 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/mips/sim-main.h b/sim/mips/sim-main.h index bb64dcb6ab1..b1045a00dc2 100644 --- a/sim/mips/sim-main.h +++ b/sim/mips/sim-main.h @@ -20,10 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef SIM_MAIN_H #define SIM_MAIN_H -/* hobble some common features for moment */ -#define WITH_WATCHPOINTS 1 - - #define SIM_CORE_SIGNAL(SD,CPU,CIA,MAP,NR_BYTES,ADDR,TRANSFER,ERROR) \ mips_core_signal ((SD), (CPU), (CIA), (MAP), (NR_BYTES), (ADDR), (TRANSFER), (ERROR)) |