summaryrefslogtreecommitdiff
path: root/gdb/config
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-12-08 02:50:34 +0000
committerJason Molenda <jmolenda@apple.com>1999-12-08 02:50:34 +0000
commit27384c2546f84568448cf7afa64e0e7246918fb4 (patch)
treef929951aefb8ce6c5381b9e740769baed763d353 /gdb/config
parent54dd7335b207d8f2d69cb89c8f60795336d150e6 (diff)
downloadgdb-27384c2546f84568448cf7afa64e0e7246918fb4.tar.gz
import gdb-1999-12-07 snapshot
Diffstat (limited to 'gdb/config')
-rw-r--r--gdb/config/i386/linux.mh2
-rw-r--r--gdb/config/i386/tm-i386.h7
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/config/i386/linux.mh b/gdb/config/i386/linux.mh
index 1fe1e364cbe..8464934ef95 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 efc3f417491..51818453ad4 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. */