Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr51247.c
blob: 16aa7f04b1aff1159105b9407d364bd6a89bc7d8 [
file
] [
log
] [
blame
]
/* PR tree-optimization/51247 */
struct
S
{
int
s
:
1
;
};
int
a
;
void
foo
(
int
x
,
int
y
)
{
struct
S s
;
s
.
s
=
!!
y
;
while
(
1
)
{
unsigned
l
=
94967295
;
a
=
x
||
(
s
.
s
&=
l
);
}
}