ARC port broken reloc processing

This initialises howto.dst_mask so that relocations in debug sections
are applied by the generic reloc processing used by objdump to display
debug sections.

	* elf32-arc.c (arc_elf_howto_init): Init dst_mask.
This commit is contained in:
Alan Modra 2015-12-01 11:10:23 +10:30
parent 56529cb374
commit 0a5ff21b13
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-12-01 Cupertino Miranda <cupertino.miranda@synopsys.com>
* elf32-arc.c (arc_elf_howto_init): Init dst_mask.
2015-11-20 Stefan Teleman <stefan.teleman@oracle.com>
PR ld/19260

View File

@ -230,7 +230,8 @@ static void arc_elf_howto_init (void)
{
#define ARC_RELOC_HOWTO(TYPE, VALUE, SIZE, BITSIZE, RELOC_FUNCTION, OVERFLOW, FORMULA) \
elf_arc_howto_table[TYPE].pc_relative = \
(strstr (#FORMULA, " P ") != NULL || strstr (#FORMULA, " PDATA ") != NULL);
(strstr (#FORMULA, " P ") != NULL || strstr (#FORMULA, " PDATA ") != NULL); \
elf_arc_howto_table[TYPE].dst_mask = RELOC_FUNCTION(0, ~0);
#include "elf/arc-reloc.def"
}