[PATCH] D24728: [ARM][LLD] Add support for .ARM.exidx sections
Rafael EspĂndola via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 27 15:09:37 PDT 2016
BTW, it looks like both bfd and gold will merge sections with -r. The
only difference seems two be that they don't process the section name
in -r mode. That is, .text.f and .text.g remain independent sections,
but given
.section .text,"ax",%progbits,unique,1
.fnstart
b external
.cantunwind
.fnend
.section .text,"ax",%progbits,unique,2
.fnstart
b external
.cantunwind
.fnend
both gold and bfd produce a single .text and a single .ARM.exidx.
Cheers,
Rafael
More information about the llvm-commits
mailing list