196925Sgrogf()
296925Sgrog{
396925Sgrog  int x = 1;
496925Sgrog#if defined(STACK_SIZE)
596925Sgrog  char big[STACK_SIZE/2];
696925Sgrog#else
796925Sgrog  char big[0x1000];
896925Sgrog#endif
996925Sgrog
1096925Sgrog  ({
1196925Sgrog    __label__ mylabel;
1296925Sgrog  mylabel:
1396925Sgrog    x++;
1496925Sgrog    if (x != 3)
1596925Sgrog      goto mylabel;
1696925Sgrog  });
1796925Sgrog  exit(0);
1896925Sgrog}
1996925Sgrog
2096925Sgrogmain()
2196925Sgrog{
2296925Sgrog  f();
2396925Sgrog}
2496925Sgrog