URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [pr33369.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-require-effective-target vect_int } */ /* { dg-require-effective-target vect_shift } */ typedef struct tagPOINT { int x; int y; } POINT; void f (POINT * ptBuf) { int i; for (i = 0; i < 4; i++) { ptBuf[i].x = ((ptBuf[i].x) << 4); ptBuf[i].y = ((ptBuf[i].y) << 4); } } /* { dg-final { cleanup-tree-dump "vect" } } */