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