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 /include/elf/ppc.h | |
parent | f59f7c79edab80fcebf332a0b7f7c421dadeb81b (diff) | |
download | binutils-1fe44d798603c762f0c3570717a7741d82d9de9b.zip binutils-1fe44d798603c762f0c3570717a7741d82d9de9b.tar.gz binutils-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 'include/elf/ppc.h')
-rw-r--r-- | include/elf/ppc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/elf/ppc.h b/include/elf/ppc.h index 1ccbda3..ca50352 100644 --- a/include/elf/ppc.h +++ b/include/elf/ppc.h @@ -145,8 +145,8 @@ END_RELOC_NUMBERS (R_PPC_max) #define IS_PPC_TLS_RELOC(R) \ ((R) >= R_PPC_TLS && (R) <= R_PPC_GOT_DTPREL16_HA) -/* Specify the start of the .glink section. */ -#define DT_PPC_GLINK DT_LOPROC +/* Specify the value of _GLOBAL_OFFSET_TABLE_. */ +#define DT_PPC_GOT DT_LOPROC /* Processor specific flags for the ELF header e_flags field. */ |