* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr62075.c
blobe42bff5971ab1a79575688b853b2af9599b2022f
1 /* { dg-do compile } */
3 int a[16][2];
4 struct A
6 int b[16][2];
7 int c[16][1];
8 };
10 void
11 foo (struct A *x)
13 int i;
14 for (i = 0; i < 16; ++i)
16 x->b[i][0] = a[i][0];
17 x->c[i][0] = 0 != a[i][0];
18 x->b[i][1] = a[i][1];