aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000120-2.c
blob: 737eb92ac64c7a356198d321223f872a8179b07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern __inline__ int
odd(int i)
{
  return i & 0x1;
}

int
foo(int i, int j)
{
  return odd(i + j);
}

int
odd(int i)
{
  return i & 0x1;
}