]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/fail_always_inline.c
PR middle-end/49139 fix always_inline diagnostics
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / fail_always_inline.c
1 /* { dg-do compile } */
2
3 extern __attribute__ ((always_inline)) void
4 bar() { } /* { dg-warning "function might not be inlinable" } */
5
6 void
7 f()
8 {
9 bar();
10 }
11