PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr78725-2.c
blob9de489edda80f8dc3a64e8554895089f1f5c5c25
1 /* { dg-do run } */
2 /* { dg-options "-O3 -fsplit-loops" } */
4 int a, b, c;
6 int main ()
8 int d;
9 for (; c < 1; c++)
10 for (d = 0; d < 3; d++)
11 for (b = 0; b < 1; b++)
12 if (c >= d)
13 a = 1;
15 if (a != 1)
16 __builtin_abort ();
18 return 0;