modernc.org/cc@v1.0.1/v2/testdata/github.com/gcc-mirror/gcc/gcc/testsuite/gcc.c-torture/execute/930406-1.c (about)

     1  f()
     2  {
     3    int x = 1;
     4  #if defined(STACK_SIZE)
     5    char big[STACK_SIZE/2];
     6  #else
     7    char big[0x1000];
     8  #endif
     9  
    10    ({
    11      __label__ mylabel;
    12    mylabel:
    13      x++;
    14      if (x != 3)
    15        goto mylabel;
    16    });
    17    exit(0);
    18  }
    19  
    20  main()
    21  {
    22    f();
    23  }