diff options
author | Paul Brook <paul@codesourcery.com> | 2004-08-06 16:18:11 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2004-08-06 16:18:11 +0000 |
commit | db6579d415fafa3833828f9528bc8d9525da3cd8 (patch) | |
tree | f0dc04dc5845967aab1b2f08fefbf2fc853c2007 /bfd/bfd-in2.h | |
parent | deaa6723d2a35d46bc95cd4d7b295596893a158c (diff) | |
download | gdb-db6579d415fafa3833828f9528bc8d9525da3cd8.zip gdb-db6579d415fafa3833828f9528bc8d9525da3cd8.tar.gz gdb-db6579d415fafa3833828f9528bc8d9525da3cd8.tar.bz2 |
bfd/
* elfarm-nabi.c (elf32_arm_howto_table): Add new EABI relocations.
(elf32_arm_reloc_map): Add BFD_RELOC_ARM_RELABS32,
BFD_RELOC_ARM_ROSEGREL32 and BFD_RELOC_ARM_SBREL32.
* reloc.c: Add BFD_RELOC_ARM_RELABS32, BFD_RELOC_ARM_ROSEGREL32
and BFD_RELOC_ARM_SBREL32.
* bfd-in2.h, bbfd.h: Regenerate.
gas/
* config/tc-arm.c (md_apply_fix3, tc_gen_reloc, arm_parse_reloc):
Handle new relocations.
* include/elf/arm.h (elf_arm_reloc_type): Add new EABI relocations.
gas/testsuite/
* gas/arm/pic.s,d: Test RELABS and SBREL relocations.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 8f5d59b..f2ec29d 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -2639,6 +2639,16 @@ field in the instruction. */ BFD_RELOC_ARM_GOTOFF, BFD_RELOC_ARM_GOTPC, +/* PC-relative or absolute relocation depending on target. Used for +entries in .init_array sections. */ + BFD_RELOC_ARM_RELABS32, + +/* Read-only segment base relative address. */ + BFD_RELOC_ARM_ROSEGREL32, + +/* Data segment base relative address. */ + BFD_RELOC_ARM_SBREL32, + /* Renesas / SuperH SH relocs. Not all of these appear in object files. */ BFD_RELOC_SH_PCDISP8BY2, BFD_RELOC_SH_PCDISP12BY2, |