OSDN Git Service

* expr.c (highest_pow2_factor_for_type): Rename into
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 931002-1.c
1 f (void (*func) ())
2 {
3   func ();
4 }
5
6 main ()
7 {
8 #ifndef NO_TRAMPOLINES
9   void t0 ()
10     {
11     }
12
13   void t1 ()
14     {
15       f (t0);
16     }
17
18   void t2 ()
19     {
20       t1 ();
21     }
22
23   t1 ();
24   t1 ();
25   t2 ();
26 #endif
27   exit (0);
28 }