URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [pr50014.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-require-effective-target vect_int } */ int f(unsigned char *s, int n) { int sum = 0; int i; for (i = 0; i < n; i++) sum += 256 * s[i]; return sum; } /* { dg-final { cleanup-tree-dump "vect" } } */