(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
pr98599-a.c
       1  /* { dg-do link } */
       2  /* { dg-require-effective-target lto } */
       3  /* { dg-additional-options "-Os -flto" } */
       4  /* { dg-additional-sources pr98599-b.c } */
       5  
       6  int b(int x);
       7  int a() { b(5); }
       8  int main() { a(); }