blob: fda44b657cce7570e3510fc52d30b27840c409f5 [file] [log] [blame]
void callit1(void*);
extern __inline__ void test()
{
__label__ l1;
callit1(&&l1);
l1:
}
void dotest()
{
test();
}