OSDN Git Service

testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 980709-1.c
1 #include <math.h>
2
3 main()
4 {
5   volatile double a;
6   double c;
7   a = 32.0;
8   c = pow(a, 1.0/3.0);
9   if (c + 0.1 > 3.174802
10       && c - 0.1 < 3.174802)
11     exit (0);
12   else
13     abort ();
14 }