aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/winline-10.c
blob: 2106253fcf278d5108c36f55f68b90d15d3062e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { 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" } */