blob: 7f1bfe161c775f1c5e01462d36e6dc41579e235f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-ch2-details" } */
int *a, *b;
int test(int n, int k)
{
int it = 0;
while (++it < n)
{
if (it % k == 1)
a[it] = 0;
else
b[it] = 1;
}
}
/* { dg-final { scan-tree-dump "is now do-while loop" "ch2" } } */