Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr88621.c
blob: 78492a34dd7702549aaa69342740553275365c4c [
file
] [
log
] [
blame
]
/* { dg-do run } */
struct
S
{
int
b
:
4
;
int
c
;
}
e
=
{
-
1
,
0
};
int
d
,
f
;
int
main
()
{
while
(
f
)
{
struct
S g
=
{
0
,
0
};
e
=
g
;
}
L
:
while
(
e
.
b
>
0
)
;
e
.
b
=
0
;
if
(
d
)
goto
L
;
return
0
;
}