]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/inline-22.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / inline-22.c
CommitLineData
3b357646 1/* { dg-do compile } */
c9fc06dc 2/* { dg-options "-funit-at-a-time -Wno-attributes" } */
1d805a56 3/* { dg-add-options bind_pic_locally } */
3b357646
RG
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) {}
8void f3() { f1(); f2(0); }