rt_gccstream/gcc/testsuite/gcc.dg/winline-10.c

18 lines
335 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -Winline" } */
struct s { int a; };
inline void f (x) /* { dg-warning "inlining .* mismatched arg" "" } */
int x;
{
asm ("");
}
void g (struct s x)
{
f (x); /* { dg-warning "called from here" "" } */
}
void f (int x); /* { dg-warning "follows non-prototype definition" } */