Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr64494.c
blob: f6718d341cc7427a1b4c1f2317cf545fd045748c [
file
] [
log
] [
blame
]
/* PR tree-optimization/64494 */
int
a
,
b
;
unsigned
char
c
;
int
main
()
{
int
d
;
a
=
0
;
for
(
d
=
0
;
d
<
2
;
d
++)
{
a
&=
(
b
>=
1
);
c
=
(
204
>
(((
unsigned
char
)
~
0
)
>>
a
))
?
0
:
204
<<
a
;
b
=
0
;
}
return
0
;
}