pr38786.c: Fix commit problem.

2009-01-13  Sebastian Pop  <sebastian.pop@amd.com>

	* gcc.dg/graphite/pr38786.c: Fix commit problem.

From-SVN: r143373
This commit is contained in:
Sebastian Pop 2009-01-14 15:29:39 +00:00 committed by Sebastian Pop
parent f2c2d5e379
commit 7fe8ccdae5
2 changed files with 4 additions and 20 deletions

View File

@ -1,3 +1,7 @@
2009-01-13 Sebastian Pop <sebastian.pop@amd.com>
* gcc.dg/graphite/pr38786.c: Fix commit problem.
2009-01-14 Nick Clifton <nickc@redhat.com>
PR c++/37862

View File

@ -18,23 +18,3 @@ dummy_slice_too_big (int bits_slice)
for (l = 0; l < 65; l++)
img->cofAC[i][j][k][l] = rdopt->cofAC[i][j][k][l];
}
/* { dg-options "-O2 -fgraphite-identity" } */
typedef struct
{
int ****cofAC;
} ImageParameters;
typedef struct
{
int ****cofAC;
} RD_DATA;
extern RD_DATA *rdopt;
extern ImageParameters *img;
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];
}