(root)/
binutils-2.41/
ld/
testsuite/
ld-elf/
pr26590a.c
       1  int select (void) { return 1; }
       2  
       3  extern int f2 (int);
       4  
       5  int f1 (int x)
       6  {
       7    if (x > 0)
       8      return x * f2 (x - 1);
       9    return 1;
      10  }