blob: e352a9155632e7dd047abe2a6609d185d8ed1fe7 [file] [log] [blame]
#ifndef NO_LABEL_VALUES
x (int i)
{
void *j[] = {&&x, &&y, &&z};
goto *j[i];
x:return 2;
y:return 3;
z:return 5;
}
main ()
{
if (x (0) != 2 || x (1) != 3 || x (2) != 5)
abort();
exit(0);
}
#else
main(){ exit (0); }
#endif