* breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete

unused macro definition.  The definition in target.h (or perhaps
	elsewhere) takes precedence.
This commit is contained in:
Kevin Buettner 2004-03-15 21:58:31 +00:00
parent f9be684a36
commit fe8bf7d723
2 changed files with 6 additions and 5 deletions

View 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.

View 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))