PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83585.c
blob2a9cf252eda17d03c273278857550ef2630773f1
1 /* PR debug/83585 */
2 /* { dg-do assemble } */
3 /* { dg-options "-std=gnu89 -O2 -g -fno-tree-dce -fno-guess-branch-probability" } */
5 int
6 foo (int x)
8 int a, b;
9 for (a = 0; a < 2; ++a)
10 if (x != 0)
12 for (b = 0; b < 2; ++b)
14 return 0;
17 return;