Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 980709-1.c
blobcda80765a6f3f10cc5a130d3c3b623ed9dec43e3
1 #include <math.h>
3 main()
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 ();