repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.dg/ucnid-[23456].c: XFAIL on AIX.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20020220-1.c
blob
aa948aa15e9fa4469325d6e54ba7906071c10bd3
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
=
0x123456789a
ULL
;
18
return
0
;
19
}