Sign in
gnu
/
gcc.git
/
94edbc153ae4f1c1532859836e528fc480da82d6
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bitf.c
blob: e6eea074bf0d5c45ed691bb21481acbaed302a7b [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
#define
int
unsigned
struct
foo
{
int
aa
:
1
;
int
a
:
9
;
int
c
:
16
;
int
d
:
6
;
};
int
foo
(
a
,
b
)
struct
foo a
;
{
return
a
.
d
==
0
;
}