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