OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000120-2.c
1 extern __inline__ int
2 odd(int i)
3 {
4   return i & 0x1;
5 }
6
7 int
8 foo(int i, int j)
9 {
10   return odd(i + j);
11 }
12
13 int
14 odd(int i)
15 {
16   return i & 0x1;
17 }
18