aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr68240.c
blob: b6d97902300ceb1ae96bd9039b5216091deee26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */

int a, b, f;

void
fn1 ()
{
  int c = 1, d, e = 1;
  a = 1; 
  for (; f;)
    b = (c && (d = (e && a)));
}