diff options
author | Renlin Li <renlin.li@arm.com> | 2015-10-02 16:37:22 +0100 |
---|---|---|
committer | Renlin Li <renlin.li@arm.com> | 2015-10-02 17:56:08 +0100 |
commit | 7ba7cfe43195305f5efa887ebbffb53a724aaac6 (patch) | |
tree | d827b8bfd16a8be0db1b86570641f7ecfdf9ce51 /ld/testsuite/ld-aarch64/emit-relocs-516.s | |
parent | 3e8286c0d2f6f94fcbc38a2233d85b90ca4040c0 (diff) | |
download | gdb-7ba7cfe43195305f5efa887ebbffb53a724aaac6.zip gdb-7ba7cfe43195305f5efa887ebbffb53a724aaac6.tar.gz gdb-7ba7cfe43195305f5efa887ebbffb53a724aaac6.tar.bz2 |
[LD][AARCH64]Add BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC support.
bfd/
2015-10-02 Renlin Li <renlin.li@arm.com>
* elfnn-aarch64.c (aarch64_reloc_got_type): Add
BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC support.
(elfNN_aarch64_final_link_relocate): Likewise.
(elfNN_aarch64_relocate_section): Likewise.
(elfNN_aarch64_gc_sweep_hook): Likewise.
(elfNN_aarch64_check_relocs): Likewise.
* elfxx-aarch64.c (_bfd_aarch64_elf_put_addend): Likewise.
(_bfd_aarch64_elf_resolve_relocation): Likewise.
ld/testsuite/
2015-10-02 Renlin Li <renlin.li@arm.com>
* ld-aarch64/emit-relocs-516.d: New.
* ld-aarch64/emit-relocs-516.s: New.
* ld-aarch64/aarch64-elf.exp: Run new test.
Diffstat (limited to 'ld/testsuite/ld-aarch64/emit-relocs-516.s')
-rw-r--r-- | ld/testsuite/ld-aarch64/emit-relocs-516.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ld/testsuite/ld-aarch64/emit-relocs-516.s b/ld/testsuite/ld-aarch64/emit-relocs-516.s new file mode 100644 index 0000000..b998adc --- /dev/null +++ b/ld/testsuite/ld-aarch64/emit-relocs-516.s @@ -0,0 +1,15 @@ + .global var + .global dummy + .text +test: + ldr x1, .Lgot + adr x2, .Lgot + add x1, x1, x2 + + movk x0, #:tlsgd_g0_nc:var + movk x0, #:tlsgd_g0_nc:dummy + add x0, x1, x0 + bl __tls_get_addr + nop + +.Lgot: .xword _GLOBAL_OFFSET_TABLE_ - . |