1 /* PR inline-asm/63282 */
2 
3 void bar (void);
4 
5 void
foo(void)6 foo (void)
7 {
8   asm volatile goto ("" : : : : a, b);
9 a:
10   bar ();
11 b:
12   return;
13 }
14