* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr52773.c
blob8daa5ee03d6b1bd7c84d4eb6510f77c62431f3d5
1 /* pr52773.c */
3 struct s {
4 short x;
5 short _pad[2];
6 };
8 static short mat_a_x;
10 void transform(const struct s *src, struct s *dst, int n)
12 int i;
14 for (i = 0; i < n; ++i)
15 dst[i].x = (src[i].x * mat_a_x) >> 6;