Commit 7fe8ccda by Sebastian Pop Committed by Sebastian Pop

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
parent f2c2d5e3
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
......
......@@ -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];
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment