URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [pr30858.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-require-effective-target vect_int } */ int foo (int ko) { int j,i; for (j = 0; j < ko; j++) i += (i > 10) ? -5 : 7; return i; } /* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" } } */ /* { dg-final { scan-tree-dump "Unknown def-use cycle pattern." "vect" } } */ /* { dg-final { cleanup-tree-dump "vect" } } */