diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-02 21:19:36 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-02 21:19:36 +0000 |
commit | 0dbd1c7442aeabc3e63daf6f70f8fb136f0cf38e (patch) | |
tree | 46fe768360493f03f7282d07762e7b26c292aabd /gcc/real.c | |
parent | 638d2d6c66cb82345c84b92a46ebf9445c56204c (diff) | |
download | gcc-0dbd1c7442aeabc3e63daf6f70f8fb136f0cf38e.tar.gz |
Update mainline egcs to gcc2 snapshot 971021.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16278 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/real.c b/gcc/real.c index b1bb94e2e2d..2f3ec1ba02c 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -1,6 +1,6 @@ /* real.c - implementation of REAL_ARITHMETIC, REAL_VALUE_ATOF, and support for XFmode IEEE extended real floating point arithmetic. - Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. Contributed by Stephen L. Moshier (moshier@world.std.com). This file is part of GNU CC. @@ -20,9 +20,9 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" #include <stdio.h> #include <errno.h> -#include "config.h" #include "tree.h" #ifndef errno @@ -209,7 +209,7 @@ unknown arithmetic type #if HOST_BITS_PER_LONG >= EMULONG_SIZE #define EMULONG long #else -#if HOST_BITS_PER_LONG_LONG >= EMULONG_SIZE +#if HOST_BITS_PER_LONGLONG >= EMULONG_SIZE #define EMULONG long long int #else /* You will have to modify this program to have a smaller unit size. */ @@ -406,15 +406,19 @@ static void eremain PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *, unsigned EMUSHORT *)); static void eiremain PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); static void mtherr PROTO((char *, int)); +#ifdef DEC static void dectoe PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); static void etodec PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); static void todec PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); +#endif +#ifdef IBM static void ibmtoe PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *, enum machine_mode)); static void etoibm PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *, enum machine_mode)); static void toibm PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *, enum machine_mode)); +#endif static void make_nan PROTO((unsigned EMUSHORT *, int, enum machine_mode)); static void uditoe PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); static void ditoe PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); |