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