/* { 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"  } } */