From 1fe44d798603c762f0c3570717a7741d82d9de9b Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 14 May 2005 05:07:20 +0000 Subject: include/elf/ * ppc.h (DT_PPC_GOT): Rename from DT_PPC_GLINK. bfd/ * elf32-ppc.c (ppc_elf_size_dynamic_sections): Set DT_PPC_GOT, not DT_PPC_GLINK. (ppc_elf_finish_dynamic_sections): Likewise. binutils/ * readelf.c (get_ppc_dynamic_type): Display DT_PPC_GOT, not DT_PPC_GLINK. --- binutils/ChangeLog | 5 +++++ binutils/readelf.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'binutils') diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f2fbd37..f3262f9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2005-05-14 Alan Modra + + * readelf.c (get_ppc_dynamic_type): Display DT_PPC_GOT, not + DT_PPC_GLINK. + 2005-05-13 Fred Fish * readelf.c: Fix a couple of obvious comment typos, diff --git a/binutils/readelf.c b/binutils/readelf.c index 3b086cb..0891847 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1417,7 +1417,7 @@ get_ppc_dynamic_type (unsigned long type) { switch (type) { - case DT_PPC_GLINK: return "PPC_GLINK"; + case DT_PPC_GOT: return "PPC_GOT"; default: return NULL; } -- cgit v1.1