1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* { dg-lto-do link } */ typedef void (*fnt) (void); void __attribute__((noinline)) bar (void) {} extern inline void check3 (void) { bar (); } void test (void) { const fnt pcheck3 = check3; pcheck3 (); } int main() { return 0; }