diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-04-02 14:41:45 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-04-02 14:41:45 +0000 |
commit | b1ced0139cf7d7c35947bb2af5d31aed91ab539e (patch) | |
tree | 20fa66960d6d63ba4103ffef7722c5895e11f410 | |
parent | bf80011a5bf6ac85f3be93623b39e1eb44ebbd8d (diff) | |
download | gdb-b1ced0139cf7d7c35947bb2af5d31aed91ab539e.zip gdb-b1ced0139cf7d7c35947bb2af5d31aed91ab539e.tar.gz gdb-b1ced0139cf7d7c35947bb2af5d31aed91ab539e.tar.bz2 |
2000-04-02 Mark Kettenis <kettenis@gnu.org>
* config/i386/xm-linux.h (HOST_LONG_DOUBLE_FORMAT): Define as
&floatformat_i387_ext.
* config/i386/xm-i386gnu.h (HOST_LONG_DOUBLE_FORMAT): Likewise.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/config/i386/xm-i386gnu.h | 2 | ||||
-rw-r--r-- | gdb/config/i386/xm-linux.h | 4 |
3 files changed, 11 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index db560df..fbf126f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2000-04-02 Mark Kettenis <kettenis@gnu.org> + + * config/i386/xm-linux.h (HOST_LONG_DOUBLE_FORMAT): Define as + &floatformat_i387_ext. + * config/i386/xm-i386gnu.h (HOST_LONG_DOUBLE_FORMAT): Likewise. + 2000-03-29 Mark Kettenis <kettenis@gnu.org> * findvar.c (extract_floating): Remove reference to diff --git a/gdb/config/i386/xm-i386gnu.h b/gdb/config/i386/xm-i386gnu.h index 19abdaa..a00c512 100644 --- a/gdb/config/i386/xm-i386gnu.h +++ b/gdb/config/i386/xm-i386gnu.h @@ -20,5 +20,7 @@ #define HOST_BYTE_ORDER LITTLE_ENDIAN +#define HOST_LONG_DOUBLE_FORMAT &floatformat_i387_ext + /* Do implement the attach and detach commands. */ #define ATTACH_DETACH 1 diff --git a/gdb/config/i386/xm-linux.h b/gdb/config/i386/xm-linux.h index fb07b42..ab08205 100644 --- a/gdb/config/i386/xm-linux.h +++ b/gdb/config/i386/xm-linux.h @@ -1,5 +1,5 @@ /* Native support for GNU/Linux, for GDB, the GNU debugger. - Copyright (C) 1986, 1987, 1989, 1992 Free Software Foundation, Inc. + Copyright (C) 1986, 1987, 1989, 1992, 2000 Free Software Foundation, Inc. This file is part of GDB. @@ -25,6 +25,8 @@ #define HOST_BYTE_ORDER LITTLE_ENDIAN +#define HOST_LONG_DOUBLE_FORMAT &floatformat_i387_ext + #define HAVE_TERMIOS /* This is the amount to subtract from u.u_ar0 |