modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/xcsebug.c (about)

     1  int g1;
     2  int g2;
     3  
     4  foo ()
     5  {
     6    int i = 1;
     7    int x;
     8  
     9    x = g1;
    10    (*(&g1 + i - 1)) = x + 1;
    11    x = g1;
    12    (*(&g1 + i - 1)) = x + 1;
    13    g1++;
    14  }