PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 931002-1.c
blobfc5222374d926255a5f2c34e7ba9e67162812f78
1 /* { dg-require-effective-target trampolines } */
3 f (void (*func) ())
5 func ();
8 main ()
10 void t0 ()
14 void t1 ()
16 f (t0);
19 void t2 ()
21 t1 ();
24 t1 ();
25 t1 ();
26 t2 ();
28 exit (0);