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/v850 | |
parent | 3cabaf66d6ec7343bd3badc5c44c2ddd06221913 (diff) | |
download | gdb-84e8e361dd3a3dd7314759f7f07927dac401d0e6.zip gdb-84e8e361dd3a3dd7314759f7f07927dac401d0e6.tar.gz gdb-84e8e361dd3a3dd7314759f7f07927dac401d0e6.tar.bz2 |
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/v850')
-rw-r--r-- | sim/v850/ChangeLog | 4 | ||||
-rw-r--r-- | sim/v850/sim-main.h | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 9b23e42..82652f0 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2015-12-24 Mike Frysinger <vapier@gentoo.org> + + * sim-main.h (WITH_WATCHPOINTS): Delete. + 2015-12-15 Dominik Vogt <vogt@linux.vnet.ibm.com> * simops.c (v850_bins): Fix left shift of negative value. diff --git a/sim/v850/sim-main.h b/sim/v850/sim-main.h index 23b23cb..e7276a6 100644 --- a/sim/v850/sim-main.h +++ b/sim/v850/sim-main.h @@ -1,11 +1,6 @@ #ifndef SIM_MAIN_H #define SIM_MAIN_H -/* General config options */ - -#define WITH_WATCHPOINTS 1 - - /* The v850 has 32bit words, numbered 31 (MSB) to 0 (LSB) */ #define WITH_TARGET_WORD_MSB 31 |