Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / 20020220-1.c
blobaa948aa15e9fa4469325d6e54ba7906071c10bd3
1 /* PR c++/4574
2 This testcase ICEd because expand_and did not handle VOIDmode
3 CONST_DOUBLE arguments. */
4 /* { dg-do compile } */
5 /* { dg-options "-w" } */
7 struct A {
8 unsigned long long b : 8;
9 unsigned long long c : 18;
12 int main()
14 struct A a;
15 long long l;
17 l = a.c = 0x123456789aULL;
18 return 0;