(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20010503-1.c
       1  void f1 (double);
       2  void f2 (int);
       3  
       4  void
       5  foo (int type, double xx)
       6  {
       7    if (type)
       8      f1 (xx);
       9    else
      10      f2 (type);
      11  }
      12  
      13  void
      14  bar (int type)
      15  {
      16    foo (type, 1.0);
      17  }