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