URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [O1-pr33854.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */ /* { dg-do compile } */ extern void *malloc (__SIZE_TYPE__ __size); typedef struct VMatrix_ VMatrix; struct VMatrix_ { int dim; int t2; }; void uniform_correlation_matrix (VMatrix * v) { double *xbar = ((void *) 0); int m = v->dim; int i; xbar = malloc (m * sizeof *xbar); for (i = 0; i < m; i++) xbar[i] /= m; } /* { dg-final { cleanup-tree-dump "vect" } } */
Go to most recent revision | Compare with Previous | Blame | View Log