pr79732.c: Require alias support.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr69166.c
blobc10f8e65357e691ad7d3d7a6553173eee48ff392
1 /* { dg-do compile } */
3 void fn2(double *e, double a)
5 int b = 0;
6 for (; b < 256; b++)
8 int c = 0;
9 double x = e[b];
10 for (; c < 256; ++c)
11 x /= a;
12 e[b] = x;