PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr49994-1.c
blob62ac23bfc373644e9dfc78c5b8b994ed43c92cd0
1 /* { dg-do compile } */
2 /* { dg-options "-Os -fsched2-use-superblocks -g" } */
3 /* { dg-require-effective-target nonlocal_goto } */
5 void x (int a)
7 __label__ xlab;
8 void y (int b)
10 switch (b)
12 case 1:
13 goto xlab;
14 case 2:
15 goto xlab;
18 y (a);
19 xlab:;