2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / calls.c
blob1582c0e92fa9191412eaff41ed8f562ee11e95b2
1 typedef void *(*T)(void);
2 f1 ()
4 ((T) 0)();
6 f2 ()
8 ((T) 1000)();
10 f3 ()
12 ((T) 10000000)();
14 f4 (r)
16 ((T) r)();
18 f5 ()
20 int (*r)() = f3;
21 ((T) r)();