aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr35171.c
blob: 3f7ef2ccacb095b3c9a999fdef28506496048e26 (plain)
1
2
3
4
5
6
7
8
9
10
int f(int a, int b, short c, int d, short e)
{
  int i;
  for (i = 1; i <= 2 ; i++) {
    c -= 4;
    a = c;
    d = d + (b?b:e);
  }
  return a + d;
}