2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / id-11.c
blob387512c3c4c501d3a0faf5b27dffee7cf37cd694
1 double
2 foo (double x, double *cof)
4 int i;
5 double tmp, value;
7 for (i = 10; i >= 0; i--)
9 value += cof[i] / tmp;
10 tmp -= 1.0;
13 return value;