URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [pr39529.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ void foo (void) { char a[1024]; char *p = &a[0]; char *p2; p2 = p + 1024; do { p += 2; *(p-2) = 1; *(p-1) = 1; } while (p < p2); } /* { dg-final { cleanup-tree-dump "vect" } } */