2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr46355.c
blobe644ec584e522b9a2d4be7bdf5f71064f9179b58
1 /* { dg-do compile } */
2 /* { dg-options "-O -ftree-loop-distribution -fstrict-overflow" } */
4 void
5 foo (int *dest, int i, int u, int v)
7 int j = i;
8 while (i)
10 dest[j--] = v;
11 dest[j--] = u;