Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58018.c
blob: 52c8e83fa0db112d2e53185ace544de6808ca716 [
file
] [
log
] [
blame
]
/* PR tree-optimization/58018 */
/* { dg-do compile } */
int
a
,
b
,
c
,
d
,
e
;
void
bar
(
int
p
)
{
int
f
=
b
;
e
&=
p
<=
(
f
^=
0
);
}
void
foo
()
{
for
(;
d
;
d
++)
{
bar
(
a
&&
c
);
bar
(
0
);
bar
(
1
);
}
}