diff options
author | Roland McGrath <roland@gnu.org> | 2003-05-28 20:52:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-05-28 20:52:43 +0000 |
commit | fe2dcbcca121c0193cbaef35573a651f975cb156 (patch) | |
tree | 54e5704d59a3f5d69a276440816099014b478670 /soft-fp | |
parent | f85a9e6198c74572a735d69fcef7f0b35d94ecb4 (diff) | |
download | glibc-fe2dcbcca121c0193cbaef35573a651f975cb156.tar glibc-fe2dcbcca121c0193cbaef35573a651f975cb156.tar.gz glibc-fe2dcbcca121c0193cbaef35573a651f975cb156.tar.bz2 glibc-fe2dcbcca121c0193cbaef35573a651f975cb156.zip |
* soft-fp/soft-fp.h (FP_EX_UNDERFLOW): Define to 0.
Diffstat (limited to 'soft-fp')
-rw-r--r-- | soft-fp/soft-fp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/soft-fp.h b/soft-fp/soft-fp.h index e2639d7bc1..18779f88d8 100644 --- a/soft-fp/soft-fp.h +++ b/soft-fp/soft-fp.h @@ -1,5 +1,5 @@ /* Software floating-point emulation. - Copyright (C) 1997,1998,1999,2000,2002 Free Software Foundation, Inc. + Copyright (C) 1997,1998,1999,2000,2002,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), @@ -55,7 +55,7 @@ #define FP_EX_OVERFLOW 0 #endif #ifndef FP_EX_UNDERFLOW -#define FP_EX_UNDERFLOW +#define FP_EX_UNDERFLOW 0 #endif #ifndef FP_EX_DIVZERO #define FP_EX_DIVZERO 0 @@ -74,7 +74,7 @@ #else #define FP_DECL_EX int _fex = 0 #endif - + #ifndef FP_INIT_ROUNDMODE #define FP_INIT_ROUNDMODE do {} while (0) #endif @@ -94,7 +94,7 @@ #define FP_SET_EXCEPTION(ex) \ _fex |= (ex) - + #define FP_UNSET_EXCEPTION(ex) \ _fex &= ~(ex) |