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 | 9a740b3fb4b15a41cfbdbf6689d4685c6ae48ab5 (patch) | |
tree | a5ea6a2d83a2605e153a2d7e42aec92645dd6944 /gdb/breakpoint.c | |
parent | 8402f2f498682414709f2745dbed7ab39f761746 (diff) | |
download | gdb-9a740b3fb4b15a41cfbdbf6689d4685c6ae48ab5.tar.gz |
* target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
* breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
definition in parenthesis.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 5dae6abc8ac..a3ef4793f10 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 |