PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-22.c
blob6795c5f4ab9a3f110388c50a54cb8db33610f5e6
1 /* { dg-do compile } */
2 /* { dg-options "-funit-at-a-time -Wno-attributes" } */
3 /* { dg-add-options bind_pic_locally } */
4 /* Verify we can inline without a complete prototype and with promoted
5 arguments. See also PR32492. */
6 __attribute__((always_inline)) void f1() {}
7 __attribute__((always_inline)) void f2(char x) {}
8 void f3() { f1(); f2(0); }