From: Gary Benson Date: Mon, 16 Jun 2014 09:47:02 +0000 (+0100) Subject: Remove unused macro X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=51c79e94b2a4572cd983e47089f6b7beea7c5ea9;p=binutils-gdb.git Remove unused macro This commit removes an unused macro from i386-nat.c. gdb/ 2014-06-18 Gary Benson * i386-nat.c (I386_DR_WATCH_MASK): Remove macro. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dbd0d2e698f..03a19e96ba3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-06-18 Gary Benson + + * i386-nat.c (I386_DR_WATCH_MASK): Remove macro. + 2014-06-18 Gary Benson * i386-nat.c (i386_length_and_rw_bits): Remove prototype. diff --git a/gdb/i386-nat.c b/gdb/i386-nat.c index 7c9e7cab557..f9fb52f74ef 100644 --- a/gdb/i386-nat.c +++ b/gdb/i386-nat.c @@ -143,9 +143,6 @@ struct i386_dr_low_type i386_dr_low; (((dr7) \ >> (DR_CONTROL_SHIFT + DR_CONTROL_SIZE * (i))) & 0x0f) -/* Mask that this I'th watchpoint has triggered. */ -#define I386_DR_WATCH_MASK(i) (1 << (i)) - /* Did the watchpoint whose address is in the I'th register break? */ #define I386_DR_WATCH_HIT(dr6, i) ((dr6) & (1 << (i)))