From 856a91ed67c4d56298794d0fea331b65bb14c493 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 27 May 1999 22:04:40 +0000 Subject: [PATCH] * readelf.c: Include "elf/i960.h". (dump_relocations): Handle EM_960. --- binutils/ChangeLog | 5 +++++ binutils/readelf.c | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f5491d361..627dad71b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +1999-05-28 Ian Lance Taylor + + * readelf.c: Include "elf/i960.h". + (dump_relocations): Handle EM_960. + Thu May 27 11:58:33 1999 Andreas Schwab * objcopy.c (copy_archive): Preserve dates of archive members if diff --git a/binutils/readelf.c b/binutils/readelf.c index c2d14869a..520344caa 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -58,6 +58,7 @@ #include "elf/arc.h" #include "elf/fr30.h" #include "elf/mcore.h" +#include "elf/i960.h" #include "bucomm.h" #include "getopt.h" @@ -351,6 +352,7 @@ dump_relocations (file, rel_offset, rel_size, symtab, strtab) case EM_ARM: case EM_386: case EM_486: + case EM_960: case EM_CYGNUS_M32R: case EM_CYGNUS_D10V: case EM_MIPS: @@ -467,6 +469,10 @@ dump_relocations (file, rel_offset, rel_size, symtab, strtab) rtype = elf_m68k_reloc_type (ELF32_R_TYPE (info)); break; + case EM_960: + rtype = elf_i960_reloc_type (ELF32_R_TYPE (info)); + break; + case EM_SPARC: rtype = elf_sparc_reloc_type (ELF32_R_TYPE (info)); break; -- 2.11.4.GIT