]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* soft-fp/soft-fp.h (FP_EX_UNDERFLOW): Define to 0.
authorRoland McGrath <roland@gnu.org>
Wed, 28 May 2003 20:52:43 +0000 (20:52 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 28 May 2003 20:52:43 +0000 (20:52 +0000)
ChangeLog
soft-fp/soft-fp.h

index 6478922f489d0b0436fa2b99928489a47f45e0f9..3e12c0ded3f823bc4d6e143d2054b84922d5ae59 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-05-26  Aldy Hernandez  <aldyh@redhat.com>
+
+       * soft-fp/soft-fp.h (FP_EX_UNDERFLOW): Define to 0.
+
 2003-05-28  Roland McGrath  <roland@redhat.com>
 
        * sysdeps/unix/sysv/linux/ia64/setcontext.S: Pass fourth argument to
index e2639d7bc16a2f5f38e17cf7ba4e2d99c8db543b..18779f88d89bd1a25a13cd570922937cf6807a4f 100644 (file)
@@ -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)