* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr39360.c
blob0bd63114431c387f60ed63c0d3092a0033cb8928
1 /* PR middle-end/39360 */
3 static int a[] = { 1 };
5 static inline void
6 bar (int **x)
8 static int *c[2] = { 0, a };
9 *x = c[1];
12 int
13 foo (int **x)
15 bar (x);