This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-defconfig in repository toolchain/ci/binutils-gdb.
from 45d5293f6e bfd: fix build with --enable-targets=all in 32-bit hosts adds fcb36d7462 Automatic date update in version.in adds dd7efa7915 PowerPC add initial -mfuture instruction support adds 8acf14351c PowerPC D-form prefixed loads and stores adds 5663e32184 PowerPC relocations for prefix insns adds 4a421c53cf PowerPC GOT_PCREL34 optimisation adds 04bdff6a76 PowerPC notoc linkage stubs adds 5a01c34c62 [gdb/testsuite] Add test-case for gdb-add-index.sh adds 405b5bd86f Regen POTFILES for bpf adds 2301ed1c9a aarch64: add STO_AARCH64_VARIANT_PCS and DT_AARCH64_VARIANT_PCS adds f166ae0188 aarch64: handle .variant_pcs directive in gas adds 0b4eac57c4 aarch64: override default elf .set handling in gas adds 823710d585 aarch64: handle STO_AARCH64_VARIANT_PCS in bfd
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 68 ++ bfd/bfd-in2.h | 17 + bfd/elf64-ppc.c | 950 ++++++++++++++++++++--- bfd/elfnn-aarch64.c | 41 + bfd/libbfd.h | 17 + bfd/po/SRC-POTFILES.in | 2 + bfd/reloc.c | 34 + bfd/version.h | 2 +- binutils/ChangeLog | 10 + binutils/objdump.c | 3 +- binutils/readelf.c | 20 + gas/ChangeLog | 71 ++ gas/config/tc-aarch64.c | 55 ++ gas/config/tc-aarch64.h | 6 + gas/config/tc-ppc.c | 370 +++++++-- gas/config/tc-ppc.h | 24 +- gas/doc/c-aarch64.texi | 6 + gas/messages.c | 18 +- gas/po/POTFILES.in | 2 + gas/testsuite/gas/aarch64/symbol-variant_pcs-1.d | 10 + gas/testsuite/gas/aarch64/symbol-variant_pcs-1.s | 8 + gas/testsuite/gas/aarch64/symbol-variant_pcs-2.d | 9 + gas/testsuite/gas/aarch64/symbol-variant_pcs-2.s | 4 + gas/testsuite/gas/aarch64/symbol-variant_pcs-3.d | 12 + gas/testsuite/gas/aarch64/symbol-variant_pcs-3.s | 20 + gas/testsuite/gas/ppc/ppc.exp | 3 + gas/testsuite/gas/ppc/prefix-align.d | 30 + gas/testsuite/gas/ppc/prefix-align.s | 21 + gas/testsuite/gas/ppc/prefix-pcrel.d | 235 ++++++ gas/testsuite/gas/ppc/prefix-pcrel.s | 121 +++ gas/testsuite/gas/ppc/prefix-reloc.d | 35 + gas/testsuite/gas/ppc/prefix-reloc.s | 13 + gdb/testsuite/ChangeLog | 4 + gdb/testsuite/gdb.dwarf2/gdb-add-index.exp | 74 ++ include/ChangeLog | 25 + include/dis-asm.h | 2 + include/elf/aarch64.h | 5 + include/elf/ppc64.h | 24 + include/opcode/ppc.h | 18 + ld/ChangeLog | 27 + ld/po/BLD-POTFILES.in | 1 + ld/testsuite/ld-aarch64/aarch64-elf.exp | 4 + ld/testsuite/ld-aarch64/variant_pcs-1.s | 59 ++ ld/testsuite/ld-aarch64/variant_pcs-2.s | 47 ++ ld/testsuite/ld-aarch64/variant_pcs-now.d | 68 ++ ld/testsuite/ld-aarch64/variant_pcs-r.d | 60 ++ ld/testsuite/ld-aarch64/variant_pcs-shared.d | 68 ++ ld/testsuite/ld-aarch64/variant_pcs.ld | 23 + ld/testsuite/ld-powerpc/notoc2.d | 29 + ld/testsuite/ld-powerpc/notoc2.s | 13 + ld/testsuite/ld-powerpc/pcrelopt.d | 89 +++ ld/testsuite/ld-powerpc/pcrelopt.s | 119 +++ ld/testsuite/ld-powerpc/pcrelopt.sec | 6 + ld/testsuite/ld-powerpc/powerpc.exp | 6 + opcodes/ChangeLog | 31 + opcodes/po/POTFILES.in | 7 + opcodes/ppc-dis.c | 93 ++- opcodes/ppc-opc.c | 212 ++++- 58 files changed, 3176 insertions(+), 175 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-1.d create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-1.s create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-2.d create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-2.s create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-3.d create mode 100644 gas/testsuite/gas/aarch64/symbol-variant_pcs-3.s create mode 100644 gas/testsuite/gas/ppc/prefix-align.d create mode 100644 gas/testsuite/gas/ppc/prefix-align.s create mode 100644 gas/testsuite/gas/ppc/prefix-pcrel.d create mode 100644 gas/testsuite/gas/ppc/prefix-pcrel.s create mode 100644 gas/testsuite/gas/ppc/prefix-reloc.d create mode 100644 gas/testsuite/gas/ppc/prefix-reloc.s create mode 100644 gdb/testsuite/gdb.dwarf2/gdb-add-index.exp create mode 100644 ld/testsuite/ld-aarch64/variant_pcs-1.s create mode 100644 ld/testsuite/ld-aarch64/variant_pcs-2.s create mode 100644 ld/testsuite/ld-aarch64/variant_pcs-now.d create mode 100644 ld/testsuite/ld-aarch64/variant_pcs-r.d create mode 100644 ld/testsuite/ld-aarch64/variant_pcs-shared.d create mode 100644 ld/testsuite/ld-aarch64/variant_pcs.ld create mode 100644 ld/testsuite/ld-powerpc/notoc2.d create mode 100644 ld/testsuite/ld-powerpc/notoc2.s create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.d create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.s create mode 100644 ld/testsuite/ld-powerpc/pcrelopt.sec