Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr33369.c
blob8838db83767e1494f36acf2f571babb4ae4976c0
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3 /* { dg-require-effective-target vect_shift } */
5 typedef struct tagPOINT
7 int x;
8 int y;
9 } POINT;
11 void
12 f (POINT * ptBuf)
14 int i;
15 for (i = 0; i < 4; i++)
17 ptBuf[i].x = ((ptBuf[i].x) << 4);
18 ptBuf[i].y = ((ptBuf[i].y) << 4);