Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr70396.c
blob: 839610f2095b4614163ce9d11f9efe983b8d73f9 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
struct
S2
{
signed
f1
:
3
;
};
int
a
[
100
];
int
b
,
c
;
char
d
;
void
fn1
()
{
struct
S2 e
;
b
/
e
.
f1
;
c
=
2
;
for
(;
c
<
100
;
c
++)
{
d
=
0
;
a
[
c
]
=
~
e
.
f1
!=
d
;
}
}