Re: Wrong results from isfinite with gcc 3.4.1

2005-02-03 Thread William M. (Mike) Miller
William M. (Mike) Miller wrote: The definitions of isfinite() (and fpclassify(), on which isfinite() depends) from math.h are as follows: #define fpclassify(x) \ (__extension__ ({__typeof__(x) __x = (x); \ (sizeof (__x) == sizeof (float)) ? __fpclassifyf(__x

Re: Wrong results from isfinite with gcc 3.4.1

2005-02-02 Thread William M. (Mike) Miller
Christopher Faylor wrote: On Wed, Feb 02, 2005 at 03:56:43PM -0500, William M. (Mike) Miller wrote: There was a thread about this problem a few months ago (http://sources.redhat.com/ml/cygwin/2004-08/msg00128.html). The OP at that time was referred to the newlib mailing list, but I can't find a

Re: Wrong results from isfinite with gcc 3.4.1

2005-02-02 Thread Christopher Faylor
On Wed, Feb 02, 2005 at 03:56:43PM -0500, William M. (Mike) Miller wrote: >There was a thread about this problem a few months ago >(http://sources.redhat.com/ml/cygwin/2004-08/msg00128.html). The >OP at that time was referred to the newlib mailing list, but I >can't find anything on the topic t

Wrong results from isfinite with gcc 3.4.1

2005-02-02 Thread William M. (Mike) Miller
There was a thread about this problem a few months ago (http://sources.redhat.com/ml/cygwin/2004-08/msg00128.html). The OP at that time was referred to the newlib mailing list, but I can't find anything on the topic there. I've recently run into this problem as well, and may have some new inf