blob: fc5222374d926255a5f2c34e7ba9e67162812f78 [file] [log] [blame]
/* { dg-require-effective-target trampolines } */
f (void (*func) ())
{
func ();
}
main ()
{
void t0 ()
{
}
void t1 ()
{
f (t0);
}
void t2 ()
{
t1 ();
}
t1 ();
t1 ();
t2 ();
exit (0);
}