diff options
author | Peter Zotov <whitequark@whitequark.org> | 2015-09-25 15:21:14 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2015-09-25 15:21:14 +0100 |
commit | 8a9e7a9121490a8c64d8c17f5be510e43104f6d9 (patch) | |
tree | 43e5f465538c635dfee83fddab4f3a9e5adeb42d /bfd/elf32-or1k.c | |
parent | 6cd8405efd699ed7686671d6f0d9caf20757b7a3 (diff) | |
download | gdb-8a9e7a9121490a8c64d8c17f5be510e43104f6d9.zip gdb-8a9e7a9121490a8c64d8c17f5be510e43104f6d9.tar.gz gdb-8a9e7a9121490a8c64d8c17f5be510e43104f6d9.tar.bz2 |
Correct the generation of OR1K pc-relative relocations.
gas PR ld/18759
* config/tc-or1k.c (tc_gen_reloc): Correct computation of PC
relative relocs.
* config/tc-or1k.h (GAS_CGEN_PRCEL_R_TYPE): Delete.
bfd * elf32-or1k.c (R_OR1K_32_PCREL): Set pcrel_offset to TRUE.
(R_OR1K_16_PCREL): Likewise.
(R_OR1K_8_PCREL): Likewise.
ld/tests * ld-elf/eh-frame-hdr: Expect to pass on the or1k-linux target.
Diffstat (limited to 'bfd/elf32-or1k.c')
-rw-r--r-- | bfd/elf32-or1k.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf32-or1k.c b/bfd/elf32-or1k.c index a1eba09..556a9ac 100644 --- a/bfd/elf32-or1k.c +++ b/bfd/elf32-or1k.c @@ -199,7 +199,7 @@ static reloc_howto_type or1k_elf_howto_table[] = FALSE, /* partial_inplace */ 0, /* src_mask */ 0xffffffff, /* dst_mask */ - FALSE), /* pcrel_offset */ + TRUE), /* pcrel_offset */ HOWTO (R_OR1K_16_PCREL, 0, /* rightshift */ @@ -213,7 +213,7 @@ static reloc_howto_type or1k_elf_howto_table[] = FALSE, /* partial_inplace */ 0, /* src_mask */ 0xffff, /* dst_mask */ - FALSE), /* pcrel_offset */ + TRUE), /* pcrel_offset */ HOWTO (R_OR1K_8_PCREL, 0, /* rightshift */ @@ -227,7 +227,7 @@ static reloc_howto_type or1k_elf_howto_table[] = FALSE, /* partial_inplace */ 0, /* src_mask */ 0xff, /* dst_mask */ - FALSE), /* pcrel_offset */ + TRUE), /* pcrel_offset */ HOWTO (R_OR1K_GOTPC_HI16, /* Type. */ 16, /* Rightshift. */ |