PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr44393.c
blob906d5932a0fbff120c91cab425320ab069c22d12
1 /* { dg-do compile } */
2 /* { dg-options "-Os -ftree-loop-distribution" } */
4 int i;
5 void foo ()
7 int **pp = 0, *p = 0;
8 while (--i)
10 *p++ = 0;
11 *pp++ = p;
13 i = *p;