diff options
author | Alan Modra <amodra@gmail.com> | 2005-01-12 11:28:28 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-01-12 11:28:28 +0000 |
commit | b4a38de6b6a4ee5fe0564e3c14a15c706ad2338b (patch) | |
tree | 2583e5c6b239b1ee64830c358b2aa998b5e73968 /include | |
parent | b8b80cf7d57d69c9827552fe8001bbbed7467d92 (diff) | |
download | gdb-b4a38de6b6a4ee5fe0564e3c14a15c706ad2338b.zip gdb-b4a38de6b6a4ee5fe0564e3c14a15c706ad2338b.tar.gz gdb-b4a38de6b6a4ee5fe0564e3c14a15c706ad2338b.tar.bz2 |
include/elf/
* ppc.h (R_PPC_RELAX32_PLT, R_PPC_RELAX32PC_PLT): Define.
(R_PPC_RELAX32, R_PPC_RELAX32PC): Adjust value.
bfd/
* elf32-ppc.c (ppc_elf_howto_raw): Delete RELAX32* entries.
(ppc_elf_relax_section): Use PLT variants of RELAX32 relocs for
reaching PLT.
(ppc_elf_relocate_section): Handle R_PPC_RELAX32_PLT and
R_PPC_RELAX32PC_PLT.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/ppc.h | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 0c49618..6ff970f 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +2005-01-12 Alan Modra <amodra@bigpond.net.au> + + * ppc.h (R_PPC_RELAX32_PLT, R_PPC_RELAX32PC_PLT): Define. + (R_PPC_RELAX32, R_PPC_RELAX32PC): Adjust value. + 2004-12-22 Klaus Rudolph <lts-rudolph@gmx.de> * include/elf/avr.h (R_AVR_LDI, R_AVR_6, R_AVR_6_ADIW): New diff --git a/include/elf/ppc.h b/include/elf/ppc.h index b510f44..f512630 100644 --- a/include/elf/ppc.h +++ b/include/elf/ppc.h @@ -122,8 +122,10 @@ START_RELOC_NUMBERS (elf_ppc_reloc_type) /* Fake relocations for branch stubs. This will keep them together. */ -#define R_PPC_RELAX32 251 -#define R_PPC_RELAX32PC 252 +#define R_PPC_RELAX32 249 +#define R_PPC_RELAX32PC 250 +#define R_PPC_RELAX32_PLT 251 +#define R_PPC_RELAX32PC_PLT 252 /* These are GNU extensions to enable C++ vtable garbage collection. */ RELOC_NUMBER (R_PPC_GNU_VTINHERIT, 253) |