binutils-gdb/ld/testsuite/ld-elf/pr21964-3c.c
Alan Modra 36b8fda5d6 Make __start/__stop symbols dynamic and add testcase
bfd/
	* elflink.c (bfd_elf_define_start_stop): Make __start and __stop
	symbols dynamic.
ld/
	* testsuite/ld-elf/pr21964-3a.c: New file.
	* testsuite/ld-elf/pr21964-3c.c: New file.
	* testsuite/ld-elf/shared.exp: Run new __start/__stop testcase.
2018-01-30 10:09:07 +10:30

18 lines
276 B
C

#include <stdio.h>
extern int foo1 (void);
extern int foo2 (void);
extern int foo3 (void);
static int my_var __attribute__((used, section("__verbose"))) = 6;
int
main ()
{
if (foo1 () == 0
&& foo2 () == 0
&& foo3 () == 0)
printf ("PASS\n");
return 0;
}