diff options
author | Tristan Gingold <gingold@adacore.com> | 2013-05-16 15:41:40 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2013-05-16 15:41:40 +0000 |
commit | 9f6e76f4ea8ddee6d6d2b1aa7c61e9cb69063196 (patch) | |
tree | 0fe3c991d60db149e4ee92ae8286ce78b32ba5cf /bfd/coff-rs6000.c | |
parent | ec9fbfea246f1857cf630dae7085829699b1612f (diff) | |
download | gdb-9f6e76f4ea8ddee6d6d2b1aa7c61e9cb69063196.zip gdb-9f6e76f4ea8ddee6d6d2b1aa7c61e9cb69063196.tar.gz gdb-9f6e76f4ea8ddee6d6d2b1aa7c61e9cb69063196.tar.bz2 |
bfd/
2013-05-16 Tristan Gingold <gingold@adacore.com>
* coff-rs6000.c (_bfd_xcoff_reloc_type_lookup): Handle BFD_RELOC_16.
* coff64-rs6000.c (xcoff64_reloc_type_lookup): Likewise.
gas/
2013-05-16 Tristan Gingold <gingold@adacore.com>
* config/tc-ppc.c (ppc_is_toc_sym): Symbols of class XMC_TC
are also TOC symbols.
Diffstat (limited to 'bfd/coff-rs6000.c')
-rw-r--r-- | bfd/coff-rs6000.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/coff-rs6000.c b/bfd/coff-rs6000.c index 0945aca..aa61afb 100644 --- a/bfd/coff-rs6000.c +++ b/bfd/coff-rs6000.c @@ -1098,7 +1098,6 @@ reloc_howto_type xcoff_howto_table[] = 0xffff, /* src_mask */ 0xffff, /* dst_mask */ FALSE), /* pcrel_offset */ - }; void @@ -1146,6 +1145,9 @@ _bfd_xcoff_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED, return &xcoff_howto_table[8]; case BFD_RELOC_PPC_TOC16: return &xcoff_howto_table[3]; + case BFD_RELOC_16: + /* Note that this relocation is only internally used by gas. */ + return &xcoff_howto_table[0xc]; case BFD_RELOC_32: case BFD_RELOC_CTOR: return &xcoff_howto_table[0]; |