aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr20412.c
blob: c0feecf3d43860c1c141e289ccbd8ab873b210ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
int
foo(void)
{
  int      a,b,g;
  int      i,len;
  int      stop;

  len = 10;
  stop = 0;
  for (i=0; i<len; i++)
  {
    a = bar1() ? 0 : 1;
    b = bar2() ? 0 : 1;
    g = bar3() ? 0 : 1;

    if (stop = ((a+b) % 2 != g)) break;
  }

  return stop;
}