diff options
author | John Darrington <john@darrington.wattle.id.au> | 2019-01-16 14:34:50 +0100 |
---|---|---|
committer | John Darrington <john@darrington.wattle.id.au> | 2019-01-16 14:39:04 +0100 |
commit | d5dcaf1b59e77047e10a1f246095d6b21f7d9772 (patch) | |
tree | f0849cbdc103770465bd83bf4905515b0191b270 /bfd/bfd-in2.h | |
parent | 338c923d26fa86f695fcdc4b659a5f0772768093 (diff) | |
download | gdb-d5dcaf1b59e77047e10a1f246095d6b21f7d9772.zip gdb-d5dcaf1b59e77047e10a1f246095d6b21f7d9772.tar.gz gdb-d5dcaf1b59e77047e10a1f246095d6b21f7d9772.tar.bz2 |
S12Z: Emit RELOC_S12Z_OPR instead of RELOC_EXT24 where appropriate.
When assembling instructions which involve OPR references, emit
RELOC_S12Z_OPR instead of RELOC_EXT24.
bfd/
* bfd-in2.h [BFD_RELOC_S12Z_OPR]: New reloc.
* libbfd.h: regen.
* elf32-s12z.c (eld_s12z_howto_table): R_S12Z_OPR takes non zero
source field. (md_apply_fix): Apply final fix
to BFD_RELOC_S12Z_OPR.
* reloc.c[BFD_RELOC_S12Z_OPR]: New reloc.
gas/
* config/tc-s12z.c (emit_opr): Emit BFD_RELOC_S12Z_OPR instead of
BFD_RELOC_24.
* testsuite/gas/s12z/opr-indirect-expr.d: Expect R_S12Z_OPR instead
of R_S12Z_EXT24.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index b78d212..e25da50 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -6696,6 +6696,9 @@ assembler and not (currently) written to any object files. */ BFD_RELOC_CKCORE_IRELATIVE, BFD_RELOC_CKCORE_PCREL_BLOOP_IMM4BY4, BFD_RELOC_CKCORE_PCREL_BLOOP_IMM12BY4, + +/* S12Z relocations. */ + BFD_RELOC_S12Z_OPR, BFD_RELOC_UNUSED }; typedef enum bfd_reloc_code_real bfd_reloc_code_real_type; |