From: Alan Modra Date: Mon, 26 Aug 2002 08:46:21 +0000 (+0000) Subject: * aoutx.h (NAME(aout,reloc_type_lookup)): Handle BFD_RELOC_8. X-Git-Tag: drow-cplus-branchpoint~536 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2846975ad0c26845f40f100b1885f33a90c67e06;p=platform%2Fupstream%2Fbinutils.git * aoutx.h (NAME(aout,reloc_type_lookup)): Handle BFD_RELOC_8. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5b6eee2..b55c6df 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-08-26 Alan Modra + + * aoutx.h (NAME(aout,reloc_type_lookup)): Handle BFD_RELOC_8. + 2002-08-24 Kaz Kojima * elf32-sh.c (sh_elf_copy_indirect_symbol): New. diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 7eebb16..fffb6d9 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -318,6 +318,7 @@ NAME(aout,reloc_type_lookup) (abfd,code) /* std relocs. */ switch (code) { + STD (BFD_RELOC_8, 0); STD (BFD_RELOC_16, 1); STD (BFD_RELOC_32, 2); STD (BFD_RELOC_8_PCREL, 4);