diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2009-09-21 19:07:44 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2009-09-21 19:07:44 +0000 |
commit | a10917efdd389ce903c6f67bc5096bb1009da207 (patch) | |
tree | 77f41f4dd700f9c59b57455831e40281015ea1d8 /bfd/elf-eh-frame.c | |
parent | bfd/ (diff) | |
download | binutils-gdb-a10917efdd389ce903c6f67bc5096bb1009da207.tar.gz binutils-gdb-a10917efdd389ce903c6f67bc5096bb1009da207.tar.bz2 binutils-gdb-a10917efdd389ce903c6f67bc5096bb1009da207.zip |
bfd/
* elf-eh-frame.c (_bfd_elf_write_section_eh_frame): Extend previous
patch to handle the new personality relaxation.
ld/testsuite/
* ld-mips-elf/eh-frame5.d: Expect PC-relative encodings
to include DW_EH_PE_sdata4.
Diffstat (limited to 'bfd/elf-eh-frame.c')
-rw-r--r-- | bfd/elf-eh-frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf-eh-frame.c b/bfd/elf-eh-frame.c index 995dac04ee0..5d1def943a3 100644 --- a/bfd/elf-eh-frame.c +++ b/bfd/elf-eh-frame.c @@ -1494,7 +1494,7 @@ _bfd_elf_write_section_eh_frame (bfd *abfd, break; case 'P': if (ent->u.cie.make_per_encoding_relative) - *buf |= DW_EH_PE_pcrel; + *buf = make_pc_relative (*buf, ptr_size); per_encoding = *buf++; per_width = get_DW_EH_PE_width (per_encoding, ptr_size); BFD_ASSERT (per_width != 0); |