aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr63282.c
blob: cb23278d50d59ad2d911d8502c5e927393a2ee1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR inline-asm/63282 */

void bar (void);

void
foo (void)
{
  asm volatile goto ("" : : : : a, b);
a:
  bar ();
b:
  return;
}