comparison gcc/testsuite/gcc.dg/20020220-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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" } */
6
7 struct A {
8 unsigned long long b : 8;
9 unsigned long long c : 18;
10 };
11
12 int main()
13 {
14 struct A a;
15 long long l;
16
17 l = a.c = 0x123456789aULL;
18 return 0;
19 }