This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 5e2f0c9a5f3 gas: Mention initial support for Intel APX in NEWS new 3d5a60de525 x86-64: Add R_X86_64_CODE_4_GOTPCRELX new 4a54cb06585 gold: Handle R_X86_64_CODE_4_GOTPCRELX new a533c8df598 x86-64: Add R_X86_64_CODE_4_GOTTPOFF/R_X86_64_CODE_4_GOTPC3 [...] new 00a17c6ad06 Gold: Handle R_X86_64_CODE_4_GOTPC32_TLSDESC/R_X86_64_CODE_ [...] new a6d0019eb7f ld: Mention support for Intel APX relocations in NEWS
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: bfd/bfd-in2.h | 3 + bfd/elf64-x86-64.c | 196 ++++++++++++++++++--- bfd/libbfd.h | 3 + bfd/reloc.c | 6 + elfcpp/x86_64.h | 14 +- gas/config/tc-i386.c | 38 +++- gas/config/tc-i386.h | 6 +- gas/testsuite/gas/i386/ilp32/x86-64-localpic.d | 4 +- gas/testsuite/gas/i386/x86-64-gotpcrel.d | 12 ++ gas/testsuite/gas/i386/x86-64-gotpcrel.s | 19 ++ gas/testsuite/gas/i386/x86-64-gottpoff.d | 19 ++ gas/testsuite/gas/i386/x86-64-gottpoff.s | 15 ++ gas/testsuite/gas/i386/x86-64-localpic.d | 4 +- gas/testsuite/gas/i386/x86-64-localpic.s | 2 + gas/testsuite/gas/i386/x86-64-tlsdesc.d | 17 ++ gas/testsuite/gas/i386/x86-64-tlsdesc.s | 13 ++ gas/testsuite/gas/i386/x86-64.exp | 3 + gas/write.h | 3 +- gold/testsuite/Makefile.am | 11 ++ gold/testsuite/Makefile.in | 17 ++ gold/testsuite/x86_64_gd_to_le.s | 1 + gold/testsuite/x86_64_gd_to_le.sh | 1 + .../testsuite/x86_64_ie_to_le.s | 8 +- gold/testsuite/{pr18689.sh => x86_64_ie_to_le.sh} | 11 +- gold/testsuite/x86_64_mov_to_lea.sh | 16 ++ gold/testsuite/x86_64_mov_to_lea1.s | 1 + gold/testsuite/x86_64_mov_to_lea2.s | 1 + gold/testsuite/x86_64_mov_to_lea3.s | 1 + gold/testsuite/x86_64_mov_to_lea4.s | 1 + gold/testsuite/x86_64_mov_to_lea5.s | 1 + gold/x86_64.cc | 193 +++++++++++++++----- include/elf/x86-64.h | 12 +- ld/NEWS | 2 + ld/testsuite/ld-x86-64/apx-load1.s | 51 ++++++ ld/testsuite/ld-x86-64/apx-load1a.d | 54 ++++++ ld/testsuite/ld-x86-64/apx-load1b.d | 55 ++++++ ld/testsuite/ld-x86-64/apx-load1c.d | 47 +++++ ld/testsuite/ld-x86-64/apx-load1d.d | 47 +++++ ld/testsuite/ld-x86-64/tlsbindesc.dd | 49 ++++++ ld/testsuite/ld-x86-64/tlsbindesc.rd | 36 ++-- ld/testsuite/ld-x86-64/tlsbindesc.s | 39 ++++ ld/testsuite/ld-x86-64/x86-64.exp | 4 + 42 files changed, 935 insertions(+), 101 deletions(-) create mode 100644 gas/testsuite/gas/i386/x86-64-gottpoff.d create mode 100644 gas/testsuite/gas/i386/x86-64-gottpoff.s create mode 100644 gas/testsuite/gas/i386/x86-64-tlsdesc.d create mode 100644 gas/testsuite/gas/i386/x86-64-tlsdesc.s copy ld/testsuite/ld-x86-64/pr25416-1.s => gold/testsuite/x86_64_ie_to_le.s (53%) copy gold/testsuite/{pr18689.sh => x86_64_ie_to_le.sh} (67%) create mode 100644 ld/testsuite/ld-x86-64/apx-load1.s create mode 100644 ld/testsuite/ld-x86-64/apx-load1a.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1b.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1c.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1d.d