1 /* { dg-options "-O2 -fgraphite-identity" } */
2 
3 typedef struct
4 {
5   int ****cofAC;
6 } ImageParameters;
7 typedef struct
8 {
9   int ****cofAC;
10 } RD_DATA;
11 extern RD_DATA *rdopt;
12 extern ImageParameters *img;
13 void
dummy_slice_too_big(int bits_slice)14 dummy_slice_too_big (int bits_slice)
15 {
16   int i, j, k, l;
17   for (j = 0; j < 4; j++)
18     for (k = 0; k < 2; k++)
19       for (l = 0; l < 65; l++)
20 	img->cofAC[i][j][k][l] = rdopt->cofAC[i][j][k][l];
21 }
22