rt_gccstream/gcc/testsuite/gcc.dg/graphite/id-5.c

16 lines
252 B
C

void matmul_i1 ()
{
int *abase;
int aystride;
int x, n, count, xcount;
int *dest_y;
int *abase_n;
for (n = 0; n < count; n++)
{
abase_n = abase + n * aystride;
for (x = 0; x < xcount; x++)
dest_y[x] += abase_n[x];
}
}