diff options
author | Alan Modra <amodra@gmail.com> | 2005-05-14 05:07:20 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-05-14 05:07:20 +0000 |
commit | 1fe44d798603c762f0c3570717a7741d82d9de9b (patch) | |
tree | f77373c53b61fa3c44161df2424073433956dd7e /binutils | |
parent | f59f7c79edab80fcebf332a0b7f7c421dadeb81b (diff) | |
download | gdb-1fe44d798603c762f0c3570717a7741d82d9de9b.zip gdb-1fe44d798603c762f0c3570717a7741d82d9de9b.tar.gz gdb-1fe44d798603c762f0c3570717a7741d82d9de9b.tar.bz2 |
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.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <amodra@bigpond.net.au> + + * readelf.c (get_ppc_dynamic_type): Display DT_PPC_GOT, not + DT_PPC_GLINK. + 2005-05-13 Fred Fish <fnf@specifixinc.com> * 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; } |