blob: 4034932b1da0fc482d0ea0be30c70cf599c9ce49 [file] [log] [blame]
/* { dg-require-effective-target label_values } */
void callit1(void*);
extern __inline__ void test()
{
__label__ l1;
callit1(&&l1);
l1:;
}
void dotest()
{
test();
}