binutils-gdb/ld/testsuite/ld-plugin/pr27441c.c
Alan Modra bfece7562d Add PR27441 testcase
PR 27441
	* testsuite/ld-plugin/pr27441a.c,
	* testsuite/ld-plugin/pr27441b.c,
	* testsuite/ld-plugin/pr27441c.c,
	* testsuite/ld-plugin/pr27441c.d: New test.
	* testsuite/ld-plugin/lto.exp: Run it.
2021-02-26 17:49:04 +10:30

9 lines
105 B
C

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