diff options
author | Catherine Moore <clm@redhat.com> | 2013-05-30 20:27:21 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 2013-05-30 20:27:21 +0000 |
commit | 067ec077d717e716b0dba87b9ebfa25074cd5453 (patch) | |
tree | 025bdeefd51e1f2e1da85bc67fac21f1da30ce8e /gas | |
parent | 4e993a190a2602ee03f2dbad245d0c074e9b2362 (diff) | |
download | gdb-067ec077d717e716b0dba87b9ebfa25074cd5453.zip gdb-067ec077d717e716b0dba87b9ebfa25074cd5453.tar.gz gdb-067ec077d717e716b0dba87b9ebfa25074cd5453.tar.bz2 |
2013-05-30 Paul Brook <paul@codesourcery.com>
bfd/
* bfd-in2.h: Regenerate.
* elf32-mips.c (elf_mips_eh_howto): New.
(bfd_elf32_bfd_reloc_type_lookup ): Support BFD_RELOC_MIPS_EH.
(bfd_elf32_bfd_reloc_name_lookup): Likewise.
(mips_elf32_rtype_to_howto): Support R_MIPS_EH.
* elf64-mips.c (elf_mips_eh_howto): New.
(bfd_elf64_bfd_reloc_type_lookup): Support BFD_RELOC_MIPS_EH.
(bfd_elf64_bfd_reloc_name_lookup): Likewise.
(mips_elf64_rtype_to_howto): Support R_MIPS_EH.
* libbfd.h: Regenerate.
* reloc.c (BFD_RELOC_MIPS_EH): New.
gas/
* config/tc-mips.c (md_apply_fix): Support BFD_RELOC_MIPS_EH.
include/elf
* mips.h (R_MIPS_EH): New.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index eb53b16..ae07be8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2013-05-30 Paul Brook <paul@codesourcery.com> + + * config/tc-mips.c (md_apply_fix): Support BFD_RELOC_MIPS_EH. + 2013-05-29 Maciej W. Rozycki <macro@codesourcery.com> * write.c (resolve_reloc_expr_symbols): On REL targets don't diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 1f16dc9..02b3cf3 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -15824,6 +15824,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) case BFD_RELOC_MICROMIPS_GOT_LO16: case BFD_RELOC_MICROMIPS_CALL_HI16: case BFD_RELOC_MICROMIPS_CALL_LO16: + case BFD_RELOC_MIPS_EH: if (fixP->fx_done) { offsetT value; |