aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2004-03-15 21:58:31 +0000
committerKevin Buettner <kevinb@redhat.com>2004-03-15 21:58:31 +0000
commitfe8bf7d723e4847e7b4b3b9b29e492810ba78072 (patch)
treecf4f247b28902395477712aea48a2e1acef1c437 /gdb
parentf9be684a36007c099af716d33b288fe8ffee9452 (diff)
downloadfsf-binutils-gdb-fe8bf7d723e4847e7b4b3b9b29e492810ba78072.zip
fsf-binutils-gdb-fe8bf7d723e4847e7b4b3b9b29e492810ba78072.tar.gz
fsf-binutils-gdb-fe8bf7d723e4847e7b4b3b9b29e492810ba78072.tar.bz2
* breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
unused macro definition. The definition in target.h (or perhaps elsewhere) takes precedence.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/breakpoint.c5
2 files changed, 6 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cfbb6ec..6f82fed 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-15 Kevin Buettner <kevinb@redhat.com>
+
+ * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
+ unused macro definition. The definition in target.h (or perhaps
+ elsewhere) takes precedence.
+
2004-03-15 Andrew Cagney <cagney@redhat.com>
* ppc-tdep.h: Update copyright.
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 01a46b3..a8696bb 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -5894,11 +5894,6 @@ watch_command_1 (char *arg, int accessflag, int from_tty)
in hardware. If the watchpoint can not be handled
in hardware return zero. */
-#if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
-#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(BYTE_SIZE) \
- ((BYTE_SIZE) <= (DEPRECATED_REGISTER_SIZE))
-#endif
-
#if !defined(TARGET_REGION_OK_FOR_HW_WATCHPOINT)
#define TARGET_REGION_OK_FOR_HW_WATCHPOINT(ADDR,LEN) \
(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN))