From 5bf6c888bfd4435f0c08c5d7cbcececd16fb057c Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 29 May 2024 21:08:27 -0700 Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?= =?UTF-8?q?l=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Created using spr 1.3.5-bogner --- bolt/test/AArch64/Inputs/array_end.lld_script | 3 +++ bolt/test/Inputs/lsda.ldscript | 3 +++ 2 files changed, 6 insertions(+) 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) }