8sa1-gcc/gcc/testsuite/gcc.c-torture/compile/20000518-1.c
2000-05-18 16:03:16 -06:00

18 lines
123 B
C

void callit1(void*);
extern __inline__ void test()
{
__label__ l1;
callit1(&&l1);
l1:
}
void dotest()
{
test();
}