* breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
authorKevin Buettner <kevinb@redhat.com>
Mon, 15 Mar 2004 21:58:31 +0000 (21:58 +0000)
committerKevin Buettner <kevinb@redhat.com>
Mon, 15 Mar 2004 21:58:31 +0000 (21:58 +0000)
unused macro definition.  The definition in target.h (or perhaps
elsewhere) takes precedence.

gdb/ChangeLog
gdb/breakpoint.c

index cfbb6ecbc5049950f3b30cc58064dbbbec4c1962..6f82fedd955c22b0facfd8c85117deafede0d56c 100644 (file)
@@ -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.
index 01a46b39f41973790188e1524de6e804d1e09c53..a8696bb1f05ed4a0722b73f48348732c1092cbb3 100644 (file)
@@ -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))