aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr38786.c
blob: 6c619ddc4cdb0650b5adbd32f41d255eb69ebabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-options "-O2 -fgraphite-identity" } */

typedef struct
{
  int ****cofAC;
} ImageParameters;
typedef struct
{
  int ****cofAC;
} RD_DATA;
extern RD_DATA *rdopt;
extern ImageParameters *img;
void
dummy_slice_too_big (int bits_slice)
{
  int i, j, k, l;
  for (j = 0; j < 4; j++)
    for (k = 0; k < 2; k++)
      for (l = 0; l < 65; l++)
	img->cofAC[i][j][k][l] = rdopt->cofAC[i][j][k][l];
}