2
0
mirror of https://frontier.innolan.net/github/amigaos-binutils.git synced 2025-11-22 06:55:45 +00:00

Handle more hunk types containing raw relocation data.

* bfd/amigaos.c (howto_for_raw_reloc): Handle HUNK_RELRELOC32 and HUNK_RELRELOC26.
This commit is contained in:
Gunther Nikl
2015-04-29 17:08:54 +00:00
parent cc69950864
commit 865652483c

View File

@ -289,6 +289,10 @@ howto_for_raw_reloc (type)
return &howto_table[R_SD8];
case HUNK_RELOC32SHORT:
return &howto_table[R_ABS32SHORT];
case HUNK_RELRELOC32:
return &howto_table[R_PC32];
case HUNK_RELRELOC26:
return &howto_table[R_PC26];
default:
return NULL;
}