2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr49994-1.c
blob902466110a573c3ff38ad78ebc7d9eebeb269626
1 /* { dg-do compile } */
2 /* { dg-options "-Os -fsched2-use-superblocks -g" } */
4 void x (int a)
6 __label__ xlab;
7 void y (int b)
9 switch (b)
11 case 1:
12 goto xlab;
13 case 2:
14 goto xlab;
17 y (a);
18 xlab:;