Files
clang-p2996/bolt/test/Inputs/lsda.ldscript
Vladislav Khmelevsky c5a306f07e [BOLT] Fix LSDA section handling (#71821)
Currently BOLT finds LSDA secition by it's name .gcc_except_table.main .
But sometimes it might have suffix e.g. .gcc_except_table.main. Find
LSDA section by it's address, rather by it's name.
Fixes #71804
2023-11-15 23:21:50 +04:00

8 lines
151 B
Plaintext

SECTIONS {
.text : { *(.text*) }
.gcc_except_table.main : { *(.gcc_except_table*) }
. = 0x20000;
.eh_frame : { *(.eh_frame) }
. = 0x80000;
}