This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 03/15] Remove unused macro
- From: Gary Benson <gbenson at redhat dot com>
- To: gdb-patches at sourceware dot org
- Date: Tue, 17 Jun 2014 15:12:46 +0100
- Subject: [PATCH 03/15] Remove unused macro
- Authentication-results: sourceware.org; auth=none
- References: <1403014378-4349-1-git-send-email-gbenson at redhat dot com>
This commit removes an unused macro from i386-nat.c.
gdb/
2014-06-17 Gary Benson <gbenson@redhat.com>
* i386-nat.c (I386_DR_WATCH_MASK): Remove macro.
---
gdb/ChangeLog | 4 ++++
gdb/i386-nat.c | 3 ---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/gdb/i386-nat.c b/gdb/i386-nat.c
index 7c9e7ca..f9fb52f 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)))
--
1.7.1