ELF: Don't check relocations in non-loaded, non-alloced sections
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / pr23161c.c
1 extern char *_end __attribute__ ((visibility("hidden")));
2 extern char *_edata __attribute__ ((visibility("hidden")));
3 extern char *__bss_start __attribute__ ((visibility("hidden")));
4
5 int
6 foo (void)
7 {
8 return _end[0] + _edata[0] + __bss_start[0];
9 }
This page took 0.029433 seconds and 4 git commands to generate.