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);
}
}