OSDN Git Service

* lib/lto.exp (lto_init): Test slib lto and no-liker-plugin path.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr49994-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-Os -fsched2-use-superblocks -g" } */
3
4 void x (int a)
5 {
6   __label__ xlab;
7   void y (int b)
8   {
9     switch (b)
10       {
11       case 1:
12         goto xlab;
13       case 2:
14         goto xlab;
15       }
16   }
17   y (a);
18 xlab:;
19 }