aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000518-1.c
blob: d2087796a8473850ae9000a9a70f0d280ed5a905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void callit1(void*);

extern __inline__ void test()
{
	__label__ l1;

	callit1(&&l1);

l1:;

}


void dotest()
{
	test();
}