blob: 2106253fcf278d5108c36f55f68b90d15d3062e5 [file] [log] [blame]
/* { 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" } */