aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-08-26 08:46:21 +0000
committerAlan Modra <amodra@gmail.com>2002-08-26 08:46:21 +0000
commit2846975ad0c26845f40f100b1885f33a90c67e06 (patch)
treef10d7e83e4a6184ff8dc3795985baaccc2b79dab
parenteb5d82dd0a495b7723819907f27ea65523e582b9 (diff)
downloadgdb-2846975ad0c26845f40f100b1885f33a90c67e06.zip
gdb-2846975ad0c26845f40f100b1885f33a90c67e06.tar.gz
gdb-2846975ad0c26845f40f100b1885f33a90c67e06.tar.bz2
* aoutx.h (NAME(aout,reloc_type_lookup)): Handle BFD_RELOC_8.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/aoutx.h1
2 files changed, 5 insertions, 0 deletions
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 <amodra@bigpond.net.au>
+
+ * aoutx.h (NAME(aout,reloc_type_lookup)): Handle BFD_RELOC_8.
+
2002-08-24 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* 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);