xref: /llvm-project/bolt/test/AArch64/Inputs/array_end.lld_script (revision ce5b371606422ed21cda0e24cdc89cb41cdc5600)
1SECTIONS {
2  .interp : { *(.interp) }
3
4  . = ALIGN(CONSTANT(MAXPAGESIZE));
5  .fini_array    :
6  {
7    PROVIDE_HIDDEN (__fini_array_start = .);
8    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
9    PROVIDE_HIDDEN (__fini_array_end = .);
10  }
11
12  . = . + 128;
13
14  .text : { *(.text) }
15}
16