2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / id-5.c
blob93972d79ed7d11291a8e86855e7704c35f30d83c
1 void matmul_i1 ()
3 int *abase;
4 int aystride;
5 int x, n, count, xcount;
6 int *dest_y;
7 int *abase_n;
8 for (n = 0; n < count; n++)
10 abase_n = abase + n * aystride;
11 for (x = 0; x < xcount; x++)
12 dest_y[x] += abase_n[x];