24edc24dbe
* ld-elf/elf.exp (array_tests): New. Call run_ld_link_exec_tests with array_tests. * ld-elf/fini.c: New file. * ld-elf/fini.out: Likewise. * ld-elf/init.c: Likewise. * ld-elf/init.out: Likewise. * ld-elf/preinit.c: Likewise. * ld-elf/preinit.out: Likewise. * lib/ld-lib.exp (run_ld_link_exec_tests): New.
35 lines
388 B
C
35 lines
388 B
C
#include <stdio.h>
|
|
|
|
static void
|
|
init_0 (void)
|
|
{
|
|
printf ("init array 0\n");
|
|
}
|
|
|
|
static void
|
|
init_1 (void)
|
|
{
|
|
printf ("init array 1\n");
|
|
}
|
|
|
|
static void
|
|
init_2 (void)
|
|
{
|
|
printf ("init array 2\n");
|
|
}
|
|
|
|
void (*const init_array []) (void)
|
|
__attribute__ ((section (".init_array"),
|
|
aligned (sizeof (void *)))) =
|
|
{
|
|
&init_0,
|
|
&init_1,
|
|
&init_2
|
|
};
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
return 0;
|
|
}
|