Commit 1efff0b6 by Eric Christopher

re PR target/29302 (isfinite returns wrong result at -O1)

2006-12-19  Eric Christopher  <echristo@apple.com>

        PR target/29302
        * gcc.c-torture/execute/pr29302-1.c: New.

From-SVN: r120058
parent 23572654
2006-12-19 Eric Christopher <echristo@apple.com>
PR target/29302
* gcc.c-torture/execute/pr29302-1.c: New.
2006-12-19 Tobias Burnus <burnus@net-b.de> 2006-12-19 Tobias Burnus <burnus@net-b.de>
PR fortran/39238 PR fortran/39238
extern void abort (void);
int main (void)
{
int n;
long double x;
x = 1/0.0;
n = (x == 1/0.0);
if (n == 1)
return 0;
else
abort ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment