diff options
author | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2015-02-18 15:36:40 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2015-02-26 22:59:16 +0000 |
commit | 389b8029b69e2a4cdbc3a23d0ee9d5b3c974bd34 (patch) | |
tree | e1d26b3add7b4b3bd3e3b7bf0da0ad52c7559fd9 /gas/config | |
parent | b480a4819bb85f0d8004cc0904e7a2eeb03cb2b7 (diff) | |
download | gdb-389b8029b69e2a4cdbc3a23d0ee9d5b3c974bd34.zip gdb-389b8029b69e2a4cdbc3a23d0ee9d5b3c974bd34.tar.gz gdb-389b8029b69e2a4cdbc3a23d0ee9d5b3c974bd34.tar.bz2 |
[AArch64] Add support for :tlsdesc: and TLSDESC_ADR_PREL21
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-aarch64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index bcd6f4f..ce56dc3 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -2474,7 +2474,7 @@ static struct reloc_table_entry reloc_table[] = { /* Get to the page containing GOT TLS entry for a symbol */ {"tlsdesc", 0, - 0, /* adr_type */ + BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21, /* adr_type */ BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21, 0, 0, @@ -6708,6 +6708,7 @@ md_apply_fix (fixS * fixP, valueT * valP, segT seg) case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC: case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21: + case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21: case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC: case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC: case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC: @@ -6909,6 +6910,7 @@ aarch64_force_relocation (struct fix *fixp) case BFD_RELOC_AARCH64_LDST8_LO12: case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC: case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21: + case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21: case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC: case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC: case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC: |