blob: 546db87ea5d33538b6a1632af70c7718488fe124 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-ipa-inline-details -fno-early-inlining -fno-ipa-sra -fno-ipa-cp" } */
typedef struct S
{
int add_offset;
int (*call)(int);
} S;
static int
bar (const S f, int x)
{
x = f.call (x);
return x;
}
static int
thisisthetarget (int x)
{
return x * x;
}
int
outerfunction (int x)
{
return bar ((S){16, thisisthetarget}, x);
}
/* { dg-final { scan-ipa-dump "thisisthetarget\[^\\n\]*inline copy in outerfunction" "inline" } } */