Commit 57c578cf by Jeffrey A Law Committed by Jeff Law

* gcc.c-torture/execute/980709-1.c: New test.

From-SVN: r21046
parent 52fe52e2
......@@ -11,6 +11,8 @@ Thu Jul 9 22:44:49 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
Thu Jul 9 00:38:51 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/980709-1.c: New test.
* gcc.dg/980709-1.c: New test.
Tue Jul 7 13:41:27 1998 Richard Henderson <rth@cygnus.com>
......
#include <math.h>
main()
{
volatile double a;
double c;
a = 32.0;
c = pow(a, 1.0/3.0);
if (c + 0.1 > 3.174802
&& c - 0.1 < 3.174802)
exit (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