modernc.org/cc@v1.0.1/testdata/gcc-6.3.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 }