Remove unused macro
authorGary Benson <gbenson@redhat.com>
Mon, 16 Jun 2014 09:47:02 +0000 (10:47 +0100)
committerGary Benson <gbenson@redhat.com>
Wed, 18 Jun 2014 09:15:05 +0000 (10:15 +0100)
This commit removes an unused macro from i386-nat.c.

gdb/
2014-06-18  Gary Benson  <gbenson@redhat.com>

* i386-nat.c (I386_DR_WATCH_MASK): Remove macro.

gdb/ChangeLog
gdb/i386-nat.c

index dbd0d2e698f5d18c9c45ba4219adf4817d913226..03a19e96ba3b979d21d5e530acd02f7c0d026d78 100644 (file)
@@ -1,3 +1,7 @@
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-nat.c (I386_DR_WATCH_MASK): Remove macro.
+
 2014-06-18  Gary Benson  <gbenson@redhat.com>
 
        * i386-nat.c (i386_length_and_rw_bits): Remove prototype.
index 7c9e7cab557eeb0ee66da60a4ac40d8e7c8426c4..f9fb52f74efcb8b27ab9455ed132edac536f1179 100644 (file)
@@ -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)))