PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr68088_1.c
blob49c6aa1454335be8748d899f9a83092a539ff17e
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 void bar (unsigned long);
6 void
7 foo (unsigned long aul, unsigned m, unsigned i)
9 while (1)
11 aul += i;
12 i = aul % m;
13 bar (aul);