URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [id-5.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
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]; } }
Go to most recent revision | Compare with Previous | Blame | View Log