aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/predcom-6.c
blob: 96d9bf93ef7b5c2e5007edce3367a262cd434c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do run } */

int a, c, e[5][2]; 
unsigned int d;

int
main ()
{
  for (d = 0; d < 2; d++)
    if (a ? 0 : e[c + 3][d] & e[c + 4][d])
      break;
  return 0;
}