blob: 38721d7943034b48aef5121e3bddeaa0eb5e8ae4 [file] [log] [blame]
/* { dg-options "-O3 -c -fdump-ipa-inline-details -fno-early-inlining -fno-ipa-cp" } */
/* { dg-add-options bind_pic_locally } */
void test2 (int);
int
test (int a)
{
int i;
for (i=0; i<a; i++)
{
test2(a);
test2(a);
}
}
int
m()
{
test (10);
}
/* { dg-final { scan-ipa-dump "loop_iterations" "inline" } } */