blob: 88466c6e68ffd687fc7d494a151b47a45fa22ea9 [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;
do
{
if (it % k == 1)
a[it] = 0;
else
b[it] = 1;
}
while (++it < n);
}
/* { dg-final { scan-tree-dump-not "is not do-while loop" "ch2" } } */