(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
20111207-2_0.c
       1  /* { dg-lto-do run } */
       2  /* { dg-lto-options { { -g -O -flto } } } */
       3  
       4  int
       5  test (void)
       6  {
       7    int f (void);
       8    return 0;
       9  }
      10  
      11  int
      12  main (void)
      13  {
      14    int f (void);
      15    int test (void);
      16  
      17    return test ();
      18  }