summaryrefslogtreecommitdiffstats
path: root/testsuite/lib032.c
blob: 68b3dbcae00756cd645348470e2473c68b8a7655 (plain)
1
2
3
4
5
6
7
8
extern int f1 (int dummy);

int f2 (int add)
{
  if (add)
    return f1 (0) + 26;
  return f1 (0);
}