From: Alan Modra Date: Wed, 16 Jan 2002 05:53:08 +0000 (+0000) Subject: * readelf.c (get_ppc64_dynamic_type): New. X-Git-Tag: binutils-2_12-branchpoint~442 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1cb7e172842a85da453fdb36545298946e89336;hp=1f808cd5d7423d498fa6197317af6a919f8c9e95;p=thirdparty%2Fbinutils-gdb.git * readelf.c (get_ppc64_dynamic_type): New. (get_dynamic_type): Call it. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 63088097ab4..7494da97c87 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-01-16 Alan Modra + + * readelf.c (get_ppc64_dynamic_type): New. + (get_dynamic_type): Call it. + 2002-01-15 Nick Clifton * objcopy.c (copy_usage): Use "switches" instead of "options". diff --git a/binutils/readelf.c b/binutils/readelf.c index 7ac891f9ab9..c8a517f7ccb 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -159,6 +159,7 @@ static bfd_vma byte_get_little_endian PARAMS ((unsigned char *, static bfd_vma byte_get_big_endian PARAMS ((unsigned char *, int)); static const char * get_mips_dynamic_type PARAMS ((unsigned long)); static const char * get_sparc64_dynamic_type PARAMS ((unsigned long)); +static const char * get_ppc64_dynamic_type PARAMS ((unsigned long)); static const char * get_parisc_dynamic_type PARAMS ((unsigned long)); static const char * get_dynamic_type PARAMS ((unsigned long)); static int slurp_rela_relocs PARAMS ((FILE *, unsigned long, unsigned long, Elf_Internal_Rela **, unsigned long *)); @@ -1176,6 +1177,18 @@ get_sparc64_dynamic_type (type) } } +static const char * +get_ppc64_dynamic_type (type) + unsigned long type; +{ + switch (type) + { + case DT_PPC64_GLINK: return "PPC64_GLINK"; + default: + return NULL; + } +} + static const char * get_parisc_dynamic_type (type) unsigned long type; @@ -1288,6 +1301,9 @@ get_dynamic_type (type) case EM_SPARCV9: result = get_sparc64_dynamic_type (type); break; + case EM_PPC64: + result = get_ppc64_dynamic_type (type); + break; default: result = NULL; break;