Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / pr19515.c
blobdf0e10721882bf3f223410516f69eccfc4b482eb
1 /* PR 19515 */
3 typedef union {
4 char a2[8];
5 }aun;
7 void abort (void);
9 int main(void)
11 aun a = {{0}};
13 if (a.a2[2] != 0)
14 abort ();
15 return 0;