(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20030310-1.c
       1  static inline void
       2  foo (char accept)
       3  {
       4    char s;
       5    while (s == accept) ;
       6  }
       7  
       8  static void
       9  bar (void)
      10  {
      11    char ch;
      12    foo (ch);
      13  }