(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
ipa/
pr88985.c
       1  void f (void)
       2  {
       3  }
       4  __attribute__((__optimize__("O2")))
       5  void g (void f())
       6  {
       7    f();
       8  }
       9  __attribute__((__optimize__("O2")))
      10  void h (void)
      11  {
      12    g(f);
      13  }