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/readelf.c | |
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/readelf.c')
-rw-r--r-- | binutils/readelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |