URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [O3-pr36098.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-require-effective-target vect_int } */ typedef struct { int iatom[3]; int blocknr; } t_sortblock; #define DIM 3 void foo (int ncons, t_sortblock *sb, int *iatom) { int i, m; for(i=0; (i<ncons); i++,iatom+=3) for(m=0; (m<DIM); m++) iatom[m]=sb[i].iatom[m]; } /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { xfail *-*-* } } } */ /* { dg-final { cleanup-tree-dump "vect" } } */