blob: c10f8e65357e691ad7d3d7a6553173eee48ff392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* { dg-do compile } */
void fn2(double *e, double a)
{
int b = 0;
for (; b < 256; b++)
{
int c = 0;
double x = e[b];
for (; c < 256; ++c)
x /= a;
e[b] = x;
}
}
|