PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / 20050330-2.c
blobf2562a8cb63cfc3122e735d44d8441d4bb318b35
1 /* { dg-do compile } */
2 /* { dg-require-profiling "-fprofile-generate" } */
3 /* { dg-options "-O2 -fprofile-generate" } */
5 struct S
7 int a;
8 void **b;
9 };
11 void
12 foo (struct S *x, int y)
14 if (!x)
15 return;
16 if (y >= x->a)
17 return;
18 x->a--;
19 for (; y < x->a; y++)
20 x->b[y] = x->b[y + 1];
21 x->b[x->a] = (void *) 0;