(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20000120-2.c
       1  /* { dg-options "-fgnu89-inline" } */
       2  
       3  extern __inline__ int
       4  odd(int i)
       5  {
       6    return i & 0x1;
       7  }
       8  
       9  int
      10  foo(int i, int j)
      11  {
      12    return odd(i + j);
      13  }
      14  
      15  int
      16  odd(int i)
      17  {
      18    return i & 0x1;
      19  }
      20