diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-13 19:41:01 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-13 19:41:01 +0000 |
commit | dbbf95081cea3ed965108d5ff7ed1c77743d2365 (patch) | |
tree | 48219348a40639b83a27deb98fcb7c7eb5761992 /gdb/config | |
parent | 198133b9a3e6e0e85e30914103d74a9138449a4a (diff) | |
download | gdb-dbbf95081cea3ed965108d5ff7ed1c77743d2365.zip gdb-dbbf95081cea3ed965108d5ff7ed1c77743d2365.tar.gz gdb-dbbf95081cea3ed965108d5ff7ed1c77743d2365.tar.bz2 |
* m88k-tdep.c (IEEE_isNAN): Remove.
config/m88k/tm-m88k.h (INVALID_FLOAT): Return 0. This was the same
broken isNAN as on the mips.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/m88k/tm-m88k.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/config/m88k/tm-m88k.h b/gdb/config/m88k/tm-m88k.h index cfcc5a2..82f2e39 100644 --- a/gdb/config/m88k/tm-m88k.h +++ b/gdb/config/m88k/tm-m88k.h @@ -96,10 +96,9 @@ extern CORE_ADDR skip_prologue (); #define ABOUT_TO_RETURN(pc) (read_memory_integer (pc, 2) == 0xF800) -/* Return 1 if P points to an invalid floating point value. - LEN is the length in bytes. */ +/* This is taken care of in print_floating [IEEE_FLOAT]. */ -#define INVALID_FLOAT(p, len) IEEE_isNAN(p,len) +#define INVALID_FLOAT(p,len) 0 /* Say how long (ordinary) registers are. */ |