From: Alan Modra Date: Mon, 27 Aug 2001 10:33:19 +0000 (+0000) Subject: * readelf.c (dump_relocations): Recognise EM_PPC64. X-Git-Tag: cygnus_cvs_20020108_pre~1541 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25a1ff5b2d692cfdd93d0793d4c123e96d2a661d;p=external%2Fbinutils.git * readelf.c (dump_relocations): Recognise EM_PPC64. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 53bb6ee..2a7989a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-08-27 Alan Modra + + * readelf.c (dump_relocations): Recognise EM_PPC64. + 2001-08-26 Thiemo Seufer * readelf.c (get_machine_flags): Add detection of EF_MIPS_32BITMODE. diff --git a/binutils/readelf.c b/binutils/readelf.c index d79ab55..3c29c8d 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -955,6 +955,7 @@ dump_relocations (file, rel_offset, rel_size, symtab, nsyms, strtab, is_rela) break; case EM_PPC: + case EM_PPC64: rtype = elf_ppc_reloc_type (type); break;