URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [O3-pr36098.c] - Rev 298
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" } } */