Inconsistent .eh_frame_hdr on powerpc64
authorAlan Modra <amodra@gmail.com>
Tue, 14 Nov 2017 00:32:57 +0000 (11:02 +1030)
committerAlan Modra <amodra@gmail.com>
Tue, 14 Nov 2017 05:15:41 +0000 (15:45 +1030)
commit2d0d44d514d9a2e2b0f7ae8129d52b02160c9897
treefd17d0d0242fa20fb405dc44032fa10042172eed
parentddbb44cf366b652dc9edf2ccd4605f1ed0e2e62d
Inconsistent .eh_frame_hdr on powerpc64

There is code in bfd/elf-eh-frame.c and ld/emultempl/elf32.em that
checks for the presence of eh_frame info by testing for a section
named .eh_frame sized more than 8 bytes.   The size test is to exclude
a zero terminator.  A similar check in elf64-ppc.c wrongly just tested
for non-zero size before creating the linker generated .eh_frame
describing plt call and other linkage stubs.  The intention was to not
generate that info unless there was some user .eh_frame.  (No user
.eh_frame implies the user doesn't care about exception handling.)
Because the test in elf64-ppc.c was wrong, ld generated the stub
.eh_frame just on finding a zero .eh_frame terminator in crtend.o, but
didn't generate the corresponding .eh_frame_hdr.

* elf64-ppc.c (ppc64_elf_size_stubs): Correct test for user
.eh_frame info.
bfd/ChangeLog
bfd/elf64-ppc.c
This page took 0.025218 seconds and 4 git commands to generate.