diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-18 15:42:24 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-18 15:42:24 +0000 |
commit | 6ab3a9c917070eb116fdd9d2d920b3f4f7631f0a (patch) | |
tree | 48defc795105085bda3cfe284dccaa26cac5d158 | |
parent | ad6525fcf5c379690dcec802bee9f00cf2f2107b (diff) | |
download | gdb-6ab3a9c917070eb116fdd9d2d920b3f4f7631f0a.zip gdb-6ab3a9c917070eb116fdd9d2d920b3f4f7631f0a.tar.gz gdb-6ab3a9c917070eb116fdd9d2d920b3f4f7631f0a.tar.bz2 |
* target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
* breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
definition in parenthesis.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/breakpoint.c | 2 | ||||
-rw-r--r-- | gdb/target.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7a3fdb2..c74ee33 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Fri Jan 19 02:31:40 2001 Andrew Cagney <cagney@b1.cygnus.com> + + * target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT) + * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro + definition in parenthesis. + Fri Jan 19 02:13:40 2001 Andrew Cagney <cagney@b1.cygnus.com> From 2000-10-27 Mark Salter <msalter@redhat.com>: diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 5dae6ab..a3ef479 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5409,7 +5409,7 @@ watch_command_1 (char *arg, int accessflag, int from_tty) #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) + (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(LEN)) #endif static int diff --git a/gdb/target.h b/gdb/target.h index 5b0afb7..e1e71d9 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1184,7 +1184,7 @@ extern void (*target_new_objfile_hook) (struct objfile *); #if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT) #define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(byte_count) \ - (LONGEST)(byte_count) <= REGISTER_SIZE + ((LONGEST)(byte_count) <= REGISTER_SIZE) #endif /* However, some addresses may not be profitable to use hardware to watch, |