blob: 8424293c17654fc71196a06af2334506a1868567 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fcompare-debug" } */
void
f1 (int n, int b)
{
extern void f2 (int);
int j;
if (b)
n = 1;
if (n < 1)
__builtin_unreachable ();
for (j = 0; j < n; j++)
f2 (j);
}