Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
990829-1.c
blob: 97579f073f1473773366e9fc7b90898f94ff12c0 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
struct
x
{
int
a
:
16
;
int
b
:
16
;
int
c
;
};
bar
()
{
struct
x y
;
y
.
b
=
1
<
y
.
a
;
foo
(&
y
);
}