blob: 49c6aa1454335be8748d899f9a83092a539ff17e [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
void bar (unsigned long);
void
foo (unsigned long aul, unsigned m, unsigned i)
{
while (1)
{
aul += i;
i = aul % m;
bar (aul);
}
}