blob: 4fa8656d9a3f0444b310c9bdc2836b46c8e92913 [file] [log] [blame]
static int __attribute__((noinline))
f2 (int i)
{
return 2 * i;
}
int __attribute__((noinline))
f1 (int i)
{
return f2 (i) + 10;
}