* config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,

REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
This commit is contained in:
Nicholas Duffek 2001-01-04 15:46:22 +00:00
parent 1c6147de4c
commit cc533b9d85
2 changed files with 7 additions and 2 deletions

View 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

View 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);