(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
fail_always_inline.c
       1  /* { dg-do compile } */
       2  /* { dg-add-options bind_pic_locally } */
       3  
       4  extern __attribute__ ((always_inline)) void
       5   bar() { } /* { dg-warning "function might not be inlinable" } */
       6  
       7  void
       8  f()
       9  {
      10    bar(); 
      11  }
      12