diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-22 14:54:31 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-22 14:54:31 +0000 |
commit | a360050d2b77ebd7edd617005bb8933d5e66e60f (patch) | |
tree | d33376a97ea711f92874e167cbbad9d8321d2022 /gcc/real.c | |
parent | 6e304f51f0d0ba804ad5771448c3e4bb2efaed17 (diff) | |
download | gcc-a360050d2b77ebd7edd617005bb8933d5e66e60f.tar.gz |
* real.c (eiisneg): Move outside #ifdef NANS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51172 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/real.c b/gcc/real.c index 0d3e657ce9c..bac06905230 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -333,9 +333,9 @@ static void einfin PARAMS ((UEMUSHORT *)); static void enan PARAMS ((UEMUSHORT *, int)); static void einan PARAMS ((UEMUSHORT *)); static int eiisnan PARAMS ((const UEMUSHORT *)); -static int eiisneg PARAMS ((const UEMUSHORT *)); static void make_nan PARAMS ((UEMUSHORT *, int, enum machine_mode)); #endif +static int eiisneg PARAMS ((const UEMUSHORT *)); static void saturate PARAMS ((UEMUSHORT *, int, int, int)); static void emovi PARAMS ((const UEMUSHORT *, UEMUSHORT *)); static void emovo PARAMS ((const UEMUSHORT *, UEMUSHORT *)); @@ -1883,7 +1883,6 @@ eiisnan (x) /* Return nonzero if sign of exploded e-type X is nonzero. */ -#ifdef NANS static int eiisneg (x) const UEMUSHORT x[]; @@ -1891,7 +1890,6 @@ eiisneg (x) return x[0] != 0; } -#endif /* NANS */ #if 0 /* Fill exploded e-type X with infinity pattern. |