forked from Imagelibrary/binutils-gdb
* i387-tdep.c, i386-tdep.c i386v-nat.c, i386aix-nat.c,
i386m3-nat.c, config/m68k/tm-m68k.h, i960-tdep.c config/i960/tm-i960.h, remote-nindy.c, config/m88k/tm-m88k.h, m88k-tdep.c: Use floatformat.h instead of ieee-float.h. * sparc-tdep.c: Remove now-obsolete ieee-float.h stuff * findvar.c: Update comment regarding ieee-float.h.
This commit is contained in:
@@ -22,12 +22,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
#include "inferior.h"
|
||||
#include "language.h"
|
||||
#include "gdbcore.h"
|
||||
#include "ieee-float.h"
|
||||
|
||||
struct ext_format ext_format_i387 = {
|
||||
/* tot sbyte smask expbyte manbyte */
|
||||
10, 9, 0x80, 9,8, 4,0 /* i387 */
|
||||
};
|
||||
#include "floatformat.h"
|
||||
|
||||
/* FIXME: Eliminate these routines when we have the time to change all
|
||||
the callers. */
|
||||
@@ -37,7 +32,7 @@ i387_to_double (from, to)
|
||||
char *from;
|
||||
char *to;
|
||||
{
|
||||
ieee_extended_to_double (&ext_format_i387, from, (double *)to);
|
||||
floatformat_to_double (&floatformat_i387_ext, from, (double *)to);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -45,7 +40,7 @@ double_to_i387 (from, to)
|
||||
char *from;
|
||||
char *to;
|
||||
{
|
||||
double_to_ieee_extended (&ext_format_i387, (double *)from, to);
|
||||
floatformat_from_double (&floatformat_i387_ext, (double *)from, to);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user