diff options
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/linux.mh | 2 | ||||
-rw-r--r-- | gdb/config/i386/tm-i386.h | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/config/i386/linux.mh b/gdb/config/i386/linux.mh index 1fe1e36..8464934 100644 --- a/gdb/config/i386/linux.mh +++ b/gdb/config/i386/linux.mh @@ -5,4 +5,4 @@ XDEPFILES= ser-tcp.o NAT_FILE= nm-linux.h NATDEPFILES= infptrace.o solib.o inftarg.o fork-child.o corelow.o \ - core-aout.o core-regset.o i386v-nat.o i386-linux-nat.o linux-thread.o + core-aout.o i386v-nat.o i386-linux-nat.o linux-thread.o diff --git a/gdb/config/i386/tm-i386.h b/gdb/config/i386/tm-i386.h index efc3f41..5181845 100644 --- a/gdb/config/i386/tm-i386.h +++ b/gdb/config/i386/tm-i386.h @@ -259,6 +259,13 @@ extern void double_to_i387 (char *, char *); double_to_i387((char *)&val, (TO)); \ } +/* Print out the i387 floating point state. */ +#ifdef HAVE_I387_REGS +extern void i387_float_info (void); +#define FLOAT_INFO { i387_float_info (); } +#endif + + /* Store the address of the place in which to copy the structure the subroutine will return. This is called from call_function. */ |