aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2014-07-25 09:20:03 -0600
committerTom Tromey <tromey@redhat.com>2014-07-25 09:20:03 -0600
commitd8be293957340f1cbe16d65d78d64aebc01df18f (patch)
tree08f039ec101520490eba43e9d989f640f97da56f
parent7d0d9d2bee341b1e88c559c476f15fc24b6de346 (diff)
downloadgdb-d8be293957340f1cbe16d65d78d64aebc01df18f.zip
gdb-d8be293957340f1cbe16d65d78d64aebc01df18f.tar.gz
gdb-d8be293957340f1cbe16d65d78d64aebc01df18f.tar.bz2
properly parenthesize two macros
I happened to notice that a couple of macros in target.h weren't properly using parens and as a result had a strange definition. This patch adds the parens and then fixes the macros to be written as must have been intended. Tested by rebuilding. I'm pushing this as obvious. 2014-07-25 Tom Tromey <tromey@redhat.com> * target.h (target_stopped_data_address) (target_watchpoint_addr_within_range): Use "->", not ".". Fix parentheses.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/target.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f265915..11cdbf8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2014-07-25 Tom Tromey <tromey@redhat.com>
+
+ * target.h (target_stopped_data_address)
+ (target_watchpoint_addr_within_range): Use "->", not ".". Fix
+ parentheses.
+
2014-07-25 Pierre Langlois <pierre.langlois@embecosm.com>
* avr-tdep.c (avr_address_to_pointer): Clarify the conversion in the
diff --git a/gdb/target.h b/gdb/target.h
index bcf97d9..29a1f01 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1822,12 +1822,12 @@ extern int target_ranged_break_num_registers (void);
target_stopped_by_watchpoint, in such case place it to *ADDR_P. Only the
INFERIOR_PTID task is being queried. */
#define target_stopped_data_address(target, addr_p) \
- (*target.to_stopped_data_address) (target, addr_p)
+ (*(target)->to_stopped_data_address) (target, addr_p)
/* Return non-zero if ADDR is within the range of a watchpoint spanning
LENGTH bytes beginning at START. */
#define target_watchpoint_addr_within_range(target, addr, start, length) \
- (*target.to_watchpoint_addr_within_range) (target, addr, start, length)
+ (*(target)->to_watchpoint_addr_within_range) (target, addr, start, length)
/* Return non-zero if the target is capable of using hardware to evaluate
the condition expression. In this case, if the condition is false when