OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / graphite / pr38786.c
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 dummy_slice_too_big (int bits_slice)
14 {
15   int i, j, k, l;
16   for (j = 0; j < 4; j++)
17     for (k = 0; k < 2; k++)
18       for (l = 0; l < 65; l++)
19         img->cofAC[i][j][k][l] = rdopt->cofAC[i][j][k][l];
20 }