aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-plugin/pr27441c.c
blob: 207a183ca2f48124394c4fd93591e3481f099a8f (plain)
1
2
3
4
5
6
7
8
extern int func1 (void);
extern int func2 (void);

int
callthem (void)
{
  return func1 () + func2 ();
}