Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr33369.c
blob9979cbd01f78c99e184dd5d63f7f574111be5866
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_shift } */
4 typedef struct tagPOINT
6 int x;
7 int y;
8 } POINT;
10 void
11 f (POINT * ptBuf)
13 int i;
14 for (i = 0; i < 4; i++)
16 ptBuf[i].x = ((ptBuf[i].x) << 4);
17 ptBuf[i].y = ((ptBuf[i].y) << 4);
21 /* { dg-final { cleanup-tree-dump "vect" } } */