Commit 0e247093 by Michael Eager Committed by Michael Eager

Replace FLOAT_MIN, FLOAT_MAX to __FLT_MIN__, __FLT_MAX__.

From-SVN: r164816
parent 319840d3
2010-09-30 Michael Eager <eager@eagercon.com>
* gcc.c-torture/execute/cmpsf-1.c: Rename FLOAT_{MIN,MAX} to
__FLT_{MIN,MAX}__.
2010-09-30 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/45758
......
......@@ -56,8 +56,8 @@ float args[] =
0.0F,
1.0F,
-1.0F,
FLOAT_MAX,
FLOAT_MIN,
__FLT_MAX__,
__FLT_MIN__,
0.0000000000001F,
123456789.0F,
-987654321.0F
......@@ -155,14 +155,6 @@ main (void)
abort ();
if (fle (arg0, arg1) != *res++)
abort ();
if (fltu (arg0, arg1) != *res++)
abort ();
if (fgeu (arg0, arg1) != *res++)
abort ();
if (fgtu (arg0, arg1) != *res++)
abort ();
if (fleu (arg0, arg1) != *res++)
abort ();
}
}
exit (0);
......
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