PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr63186.c
blob32aa2afda9b1a453e7ba6ae28a836b093829a82f
1 /* { dg-do link } */
2 /* { dg-options "-O2" } */
3 /* { dg-require-effective-target label_values } */
5 void *a;
6 int b, c, d;
8 void
9 bar ()
11 switch (c)
13 case 0:
14 lab:
15 __asm__ ("");
16 return;
17 default:
18 break;
20 b = 0;
21 d = 0;
22 a = &&lab;
25 void
26 foo ()
28 bar ();
31 int
32 main()