* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr39983.c
blob67081211ccaa327e1d1b109ccfa442834f74da82
1 typedef struct {
2 int *p;
3 } *A;
5 extern const int a[1];
6 extern const int b[1];
8 void foo()
10 A x;
11 A y;
12 static const int * const c[] = { b };
14 x->p = (int*)c[0];
15 y->p = (int*)a;