diff options
author | Kevin Buettner <kevinb@redhat.com> | 2004-03-15 21:58:31 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2004-03-15 21:58:31 +0000 |
commit | fe8bf7d723e4847e7b4b3b9b29e492810ba78072 (patch) | |
tree | cf4f247b28902395477712aea48a2e1acef1c437 /gdb/breakpoint.c | |
parent | f9be684a36007c099af716d33b288fe8ffee9452 (diff) | |
download | gdb-fe8bf7d723e4847e7b4b3b9b29e492810ba78072.zip gdb-fe8bf7d723e4847e7b4b3b9b29e492810ba78072.tar.gz 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/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 5 |
1 files changed, 0 insertions, 5 deletions
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)) |