diff --git a/bolt/test/AArch64/Inputs/array_end.lld_script b/bolt/test/AArch64/Inputs/array_end.lld_script index 182c13d370a39..bf77c0493a095 100644 --- a/bolt/test/AArch64/Inputs/array_end.lld_script +++ b/bolt/test/AArch64/Inputs/array_end.lld_script @@ -1,4 +1,7 @@ SECTIONS { + .interp : { *(.interp) } + + . = ALIGN(CONSTANT(MAXPAGESIZE)); .fini_array : { PROVIDE_HIDDEN (__fini_array_start = .); diff --git a/bolt/test/Inputs/lsda.ldscript b/bolt/test/Inputs/lsda.ldscript index aa608ecd97e8c..011e0c6ac8a0f 100644 --- a/bolt/test/Inputs/lsda.ldscript +++ b/bolt/test/Inputs/lsda.ldscript @@ -1,5 +1,8 @@ SECTIONS { + .interp : { *(.interp) } + . = ALIGN(CONSTANT(MAXPAGESIZE)); .text : { *(.text*) } + . = ALIGN(CONSTANT(MAXPAGESIZE)); .gcc_except_table.main : { *(.gcc_except_table*) } . = 0x20000; .eh_frame : { *(.eh_frame) }