8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/931002-1.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

29 lines
222 B
C

f (void (*func) ())
{
func ();
}
main ()
{
#ifndef NO_TRAMPOLINES
void t0 ()
{
}
void t1 ()
{
f (t0);
}
void t2 ()
{
t1 ();
}
t1 ();
t1 ();
t2 ();
#endif
exit (0);
}