PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr61583.c
blob8424293c17654fc71196a06af2334506a1868567
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fcompare-debug" } */
4 void
5 f1 (int n, int b)
7 extern void f2 (int);
8 int j;
10 if (b)
11 n = 1;
13 if (n < 1)
14 __builtin_unreachable ();
16 for (j = 0; j < n; j++)
17 f2 (j);