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

     1  /* PR middle-end/39360 */
     2  
     3  static int a[] = { 1 };
     4  
     5  static inline void
     6  bar (int **x)
     7  {
     8    static int *c[2] = { 0, a };
     9    *x = c[1];
    10  }
    11  
    12  int
    13  foo (int **x)
    14  {
    15    bar (x);
    16  }