Fix encoding or OpenRisk1000 PC relative relocations.
PR ld/18759 * elf32-or1k.c (R_OR1K_32_PCREL): Set pcrel_offset to TRUE. (R_OR1K_16_PCREL): Likewise. (R_OR1K_8_PCREL): Likewise.
This commit is contained in:
parent
4c0160b8e2
commit
dbac553d28
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2015-08-11 Peter Zotov <whitequark@whitequark.org>
|
||||
|
||||
PR ld/18759
|
||||
* elf32-or1k.c (R_OR1K_32_PCREL): Set pcrel_offset to TRUE.
|
||||
(R_OR1K_16_PCREL): Likewise.
|
||||
(R_OR1K_8_PCREL): Likewise.
|
||||
|
||||
2015-08-11 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR binutils/18747
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in a new issue