diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-12-08 02:51:13 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-12-08 02:51:13 +0000 |
commit | de57eccd12a59b2ccb9700dca5c6e86d5c6425ad (patch) | |
tree | 37044be8a572bdedabcaeede95935594432f6572 /gdb/config | |
parent | 6fe6a461276a13a5c309724ffe54a5cf5893c4f7 (diff) | |
download | gdb-de57eccd12a59b2ccb9700dca5c6e86d5c6425ad.zip gdb-de57eccd12a59b2ccb9700dca5c6e86d5c6425ad.tar.gz gdb-de57eccd12a59b2ccb9700dca5c6e86d5c6425ad.tar.bz2 |
import gdb-1999-12-07 snapshot
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. */ |