From: DJ Delorie Date: Sun, 12 Feb 2006 15:54:25 +0000 (+0000) Subject: merge from gcc X-Git-Tag: gdb-csl-20060226-branchpoint~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e27d251e327de665b6f3284557acb8c8176e4375;p=external%2Fbinutils.git merge from gcc --- diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index df72f6d..e319e76 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,11 @@ +2006-02-11 Roger Sayle + R. Scott Bailey + Bill Northcott + + PR bootstrap/16787 + * floatformat.c: Include where available. + (NAN): Use value of DBL_QNAN if defined, and NAN isn't. + 2006-01-29 Gabriel Dos Reis * configure.ac: Add -Wc++-compat to ac_libibety_warn_cflags where diff --git a/libiberty/floatformat.c b/libiberty/floatformat.c index c97b6c5..bd31efa 100644 --- a/libiberty/floatformat.c +++ b/libiberty/floatformat.c @@ -1,5 +1,5 @@ /* IEEE floating point support routines, for GDB, the GNU Debugger. - Copyright 1991, 1994, 1999, 2000, 2003, 2005 + Copyright 1991, 1994, 1999, 2000, 2003, 2005, 2006 Free Software Foundation, Inc. This file is part of GDB. @@ -31,6 +31,11 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. #include #endif +/* On some platforms, provides DBL_QNAN. */ +#ifdef STDC_HEADERS +#include +#endif + #include "ansidecl.h" #include "libiberty.h" #include "floatformat.h" @@ -44,8 +49,12 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. #endif #ifndef NAN +#ifdef DBL_QNAN +#define NAN DBL_QNAN +#else #define NAN (0.0 / 0.0) #endif +#endif static unsigned long get_field (const unsigned char *, enum floatformat_byteorders,