blob: 261020a0ea71a9892655838664f7c10cadfff2e7 [file] [log] [blame]
/* { dg-require-effective-target indirect_jumps } */
/* { dg-require-effective-target label_values } */
/* { dg-additional-options "-std=gnu89" } */
extern void abort (void);
extern void exit (int);
f ()
{
__label__ l;
void *x()
{
return &&l;
}
goto *x ();
abort ();
return;
l:
exit (0);
}