* config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
authorNicholas Duffek <nsd@redhat.com>
Thu, 4 Jan 2001 15:46:22 +0000 (15:46 +0000)
committerNicholas Duffek <nsd@redhat.com>
Thu, 4 Jan 2001 15:46:22 +0000 (15:46 +0000)
REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.

gdb/ChangeLog
gdb/config/i386/tm-i386.h

index 1b59389..8e02fe0 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-04  Nicholas Duffek  <nsd@redhat.com>
+
+       * config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
+       REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
+
 2001-01-03  J.T. Conklin  <jtc@redback.com>
 
        * alphabsd-nat.c, i386-linux-nat.c, i386bsd-nat.c: Fix typo in
index fc89c3a..44d417e 100644 (file)
@@ -259,7 +259,7 @@ extern int i386_register_virtual_size[];
    virtual format with type TYPE in buffer TO.  */
 
 #define REGISTER_CONVERT_TO_VIRTUAL(regnum, type, from, to) \
-  i386_register_convert_to_virtual ((regnum), (type), (from), (to));
+  i386_register_convert_to_virtual ((regnum), (type), (from), (to))
 extern void i386_register_convert_to_virtual (int regnum, struct type *type,
                                              char *from, char *to);
 
@@ -267,7 +267,7 @@ extern void i386_register_convert_to_virtual (int regnum, struct type *type,
    raw format for register REGNUM in buffer TO.  */
 
 #define REGISTER_CONVERT_TO_RAW(type, regnum, from, to) \
-  i386_register_convert_to_raw ((type), (regnum), (from), (to));
+  i386_register_convert_to_raw ((type), (regnum), (from), (to))
 extern void i386_register_convert_to_raw (struct type *type, int regnum,
                                          char *from, char *to);