Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / pr19687.c
blobc300ab48cf0571167d353952bb2a88845ce3fd65
1 extern void abort (void);
3 union U
5 int i, j[4];
6 };
8 int main ()
10 union U t = {};
11 int i;
13 for (i = 0; i < 4; ++i)
14 if (t.j[i] != 0)
15 abort ();
17 return 0;