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. */ f1()6__attribute__((always_inline)) void f1() {} f2(char x)7__attribute__((always_inline)) void f2(char x) {} f3()8void f3() { f1(); f2(0); } 9