Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / unsorted / bfins.c
blobe626d82b3cb3fe48dfb76b04250da85369a474cb
1 struct foo
3 unsigned j : 16;
4 unsigned i : 16;
5 };
7 struct foo
8 foo (a, b)
9 struct foo a;
10 int b;
12 a.j = 123;
13 a.i = b;
14 return a;