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-aarch64-stable-allmodconfig in repository toolchain/ci/binutils-gdb.
from 73199c2b7a Updated French translation for the ld sub-directory and an u [...] adds 7c1f422735 PowerPC Rename powerxx to power10 adds 6bbb0c0595 PowerPC Default disassembler to -Mpower10 adds 1224c05de4 Power10 Add new L operand to the slbiag instruction adds afef4fe975 Power10 Copy/Paste Extensions adds 3ff0a5ba64 Power10 byte reverse instructions adds f4791f1afa Power10 vector integer multiply, divide, modulo insns adds 94ba9882d5 Power10 VSX 32-byte storage access adds c7d7aea2f5 Power10 128-bit binary integer operations adds 6edbfd3beb Power10 SIMD permute class operations adds aa3c112fab Power10 Reduced precision outer product operations adds fdefed7c26 Power10 VSX Mask Manipulation Operations adds d7e97a765e Power10 VSX PCV generate operations adds ec40e91c77 Power10 bit manipulation operations adds 4f3e9537c4 Power10 Set boolean extension adds 66ef5847c3 Power10 string operations adds 5d57bc3ff9 Power10 test lsb by byte operation adds 9cc4ce8831 Power10 VSX load/store rightmost element operations adds 3b646889b0 Power10 VSX scalar min-max-compare quad precision operations adds 3ee6bb113a [gdb/symtab] Fix incomplete CU list assert in .debug_names adds 7666722fce [gdb/symtab] Save modules in .debug_names
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 8 + bfd/elf64-ppc.c | 61 ++- gas/ChangeLog | 109 ++++ gas/config/tc-ppc.c | 14 +- gas/testsuite/gas/ppc/bitmanip.d | 23 + gas/testsuite/gas/ppc/bitmanip.s | 14 + gas/testsuite/gas/ppc/byte_rev.d | 13 + gas/testsuite/gas/ppc/byte_rev.s | 5 + gas/testsuite/gas/ppc/genpcv.d | 14 + gas/testsuite/gas/ppc/genpcv.s | 6 + gas/testsuite/gas/ppc/int128.d | 42 ++ gas/testsuite/gas/ppc/int128.s | 34 ++ gas/testsuite/gas/ppc/maskmanip.d | 30 + gas/testsuite/gas/ppc/maskmanip.s | 22 + gas/testsuite/gas/ppc/outerprod.d | 104 ++++ gas/testsuite/gas/ppc/outerprod.s | 63 +++ gas/testsuite/gas/ppc/power10.d | 16 + gas/testsuite/gas/ppc/power10.s | 8 + gas/testsuite/gas/ppc/ppc.exp | 16 + gas/testsuite/gas/ppc/prefix-align.d | 6 +- gas/testsuite/gas/ppc/prefix-pcrel.d | 6 +- gas/testsuite/gas/ppc/prefix-reloc.d | 4 +- gas/testsuite/gas/ppc/rightmost.d | 17 + gas/testsuite/gas/ppc/rightmost.s | 10 + gas/testsuite/gas/ppc/scalarquad.d | 15 + gas/testsuite/gas/ppc/scalarquad.s | 7 + gas/testsuite/gas/ppc/set_bool.d | 14 + gas/testsuite/gas/ppc/set_bool.s | 6 + gas/testsuite/gas/ppc/simd_perm.d | 53 ++ gas/testsuite/gas/ppc/simd_perm.s | 37 ++ gas/testsuite/gas/ppc/stringop.d | 20 + gas/testsuite/gas/ppc/stringop.s | 12 + gas/testsuite/gas/ppc/vec_mul.d | 27 + gas/testsuite/gas/ppc/vec_mul.s | 19 + gas/testsuite/gas/ppc/vsx4.d | 12 + gas/testsuite/gas/ppc/vsx4.s | 4 + gas/testsuite/gas/ppc/vsx_32byte.d | 33 ++ gas/testsuite/gas/ppc/vsx_32byte.s | 17 + gas/testsuite/gas/ppc/xvtlsbb.d | 17 + gas/testsuite/gas/ppc/xvtlsbb.s | 10 + gdb/ChangeLog | 12 + gdb/dwarf2/index-write.c | 2 + gdb/dwarf2/read.c | 25 +- gdb/testsuite/ChangeLog | 11 + gdb/testsuite/gdb.dwarf2/clang-debug-names-2-foo.c | 22 + gdb/testsuite/gdb.dwarf2/clang-debug-names-2.c | 27 + gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp | 45 ++ gdb/testsuite/gdb.dwarf2/clang-debug-names.exp | 110 +--- ...ng-debug-names.exp => clang-debug-names.exp.in} | 26 +- gold/ChangeLog | 4 + gold/powerpc.cc | 38 +- include/ChangeLog | 10 + include/elf/ppc64.h | 2 +- include/opcode/ppc.h | 33 +- ld/ChangeLog | 15 + ld/testsuite/ld-powerpc/callstub-1.d | 4 +- ld/testsuite/ld-powerpc/notoc2.d | 4 +- ld/testsuite/ld-powerpc/pcrelopt.d | 12 + ld/testsuite/ld-powerpc/pcrelopt.s | 16 + ld/testsuite/ld-powerpc/powerpc.exp | 8 +- ld/testsuite/ld-powerpc/tlsgd.d | 4 +- ld/testsuite/ld-powerpc/tlsie.d | 4 +- ld/testsuite/ld-powerpc/tlsld.d | 4 +- opcodes/ChangeLog | 130 +++++ opcodes/ppc-dis.c | 13 +- opcodes/ppc-opc.c | 608 +++++++++++++++++++-- 66 files changed, 1878 insertions(+), 259 deletions(-) create mode 100644 gas/testsuite/gas/ppc/bitmanip.d create mode 100644 gas/testsuite/gas/ppc/bitmanip.s create mode 100644 gas/testsuite/gas/ppc/byte_rev.d create mode 100644 gas/testsuite/gas/ppc/byte_rev.s create mode 100644 gas/testsuite/gas/ppc/genpcv.d create mode 100644 gas/testsuite/gas/ppc/genpcv.s create mode 100644 gas/testsuite/gas/ppc/int128.d create mode 100644 gas/testsuite/gas/ppc/int128.s create mode 100644 gas/testsuite/gas/ppc/maskmanip.d create mode 100644 gas/testsuite/gas/ppc/maskmanip.s create mode 100644 gas/testsuite/gas/ppc/outerprod.d create mode 100644 gas/testsuite/gas/ppc/outerprod.s create mode 100644 gas/testsuite/gas/ppc/power10.d create mode 100644 gas/testsuite/gas/ppc/power10.s create mode 100644 gas/testsuite/gas/ppc/rightmost.d create mode 100644 gas/testsuite/gas/ppc/rightmost.s create mode 100644 gas/testsuite/gas/ppc/scalarquad.d create mode 100644 gas/testsuite/gas/ppc/scalarquad.s create mode 100644 gas/testsuite/gas/ppc/set_bool.d create mode 100644 gas/testsuite/gas/ppc/set_bool.s create mode 100644 gas/testsuite/gas/ppc/simd_perm.d create mode 100644 gas/testsuite/gas/ppc/simd_perm.s create mode 100644 gas/testsuite/gas/ppc/stringop.d create mode 100644 gas/testsuite/gas/ppc/stringop.s create mode 100644 gas/testsuite/gas/ppc/vec_mul.d create mode 100644 gas/testsuite/gas/ppc/vec_mul.s create mode 100644 gas/testsuite/gas/ppc/vsx4.d create mode 100644 gas/testsuite/gas/ppc/vsx4.s create mode 100644 gas/testsuite/gas/ppc/vsx_32byte.d create mode 100644 gas/testsuite/gas/ppc/vsx_32byte.s create mode 100644 gas/testsuite/gas/ppc/xvtlsbb.d create mode 100644 gas/testsuite/gas/ppc/xvtlsbb.s create mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2-foo.c create mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2.c create mode 100644 gdb/testsuite/gdb.dwarf2/clang-debug-names-2.exp copy gdb/testsuite/gdb.dwarf2/{clang-debug-names.exp => clang-debug-names.exp.in} (89%)