OSDN Git Service

* c-decl.c (pushdecl): When an extern declaration at block scope
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000518-1.c
1 void callit1(void*);
2
3 extern __inline__ void test()
4 {
5         __label__ l1;
6
7         callit1(&&l1);
8
9 l1:;
10
11 }
12
13
14 void dotest()
15 {
16         test();
17 }