This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug testsuite/32841] FAIL: gfortran.dg/edit_real_1.f90 on Darwin8
- From: "dominiq at lps dot ens dot fr" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 20 Jul 2007 21:20:08 -0000
- Subject: [Bug testsuite/32841] FAIL: gfortran.dg/edit_real_1.f90 on Darwin8
- References: <bug-32841-12313@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from dominiq at lps dot ens dot fr 2007-07-20 21:20 -------
Subject: Re: FAIL: gfortran.dg/edit_real_1.f90 on
Darwin8
I don't know if the following code is correct, but it returns 1:
#include <math.h>
#include <stdio.h>
int main()
{
double x;
x = 1.79769313486231570814527423731704356798070567526e+308;
printf("%1d \n", isfinite(x));
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32841