diff options
author | Jiong Wang <jiong.wang@arm.com> | 2015-01-13 11:18:10 +0000 |
---|---|---|
committer | Jiong Wang <jiong.wang@arm.com> | 2015-01-13 11:18:10 +0000 |
commit | bab91cce20e052822e128c672e0570c8f3f58131 (patch) | |
tree | aff1fe248016ea56a47272fa83b994f62806c9e0 /bfd/elfnn-aarch64.c | |
parent | 92fc2e6978d9a7c8324c7e851dbee59e22ec7a37 (diff) | |
download | gdb-bab91cce20e052822e128c672e0570c8f3f58131.zip gdb-bab91cce20e052822e128c672e0570c8f3f58131.tar.gz gdb-bab91cce20e052822e128c672e0570c8f3f58131.tar.bz2 |
[AArch64] Enable overflow check for R_AARCH64_TLSLE_ADD_TPREL_HI12
bfd/
PR ld/17415
* elfnn-aarch64.c (elfNN_aarch64_howto_table): Mark
R_AARCH64_TLSLE_ADD_TPREL_HI12 as complain_overflow_unsigned.
* elfxx-aarch64.c (_bfd_aarch64_elf_resolve_relocation): Correct the bit
mask.
ld/testsuite/
PR ld/17415
* ld-aarch64/pr17415.s: Source file for new test.
* ld-aarch64/pr17415.d: Expect file for new test.
* ld-aarch64/aarch64-elf.exp: Run the new test.
Diffstat (limited to 'bfd/elfnn-aarch64.c')
-rw-r--r-- | bfd/elfnn-aarch64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c index 3554a87..f632eee 100644 --- a/bfd/elfnn-aarch64.c +++ b/bfd/elfnn-aarch64.c @@ -1038,7 +1038,7 @@ static reloc_howto_type elfNN_aarch64_howto_table[] = 12, /* bitsize */ FALSE, /* pc_relative */ 0, /* bitpos */ - complain_overflow_dont, /* complain_on_overflow */ + complain_overflow_unsigned, /* complain_on_overflow */ bfd_elf_generic_reloc, /* special_function */ AARCH64_R_STR (TLSLE_ADD_TPREL_HI12), /* name */ FALSE, /* partial_inplace */ |