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-next-defconfig in repository toolchain/ci/binutils-gdb.
from b42560a241 Automatic date update in version.in adds dd3189990b Use the correct names for the init and fini array start symb [...] adds 7ce2460a77 [binutils][aarch64] SVE2 feature extension flags. adds 5cd9975095 [binutils][aarch64] Allow movprfx for SVE2 instructions. adds adccc50753 [binutils][aarch64] Introduce SVE_IMM_ROT3 operand. adds 3bd82c86f0 [binutils][aarch64] New iclass sve_size_hsd2. adds 116adc2747 [binutils][aarch64] New SVE_Zm3_11_INDEX operand. adds c469c86473 [binutils][aarch64] New SVE_ADDR_ZX operand. adds 0a57e14ffa [binutils][aarch64] New sve_size_sd2 iclass. adds 3c705960ca [binutils][aarch64] New sve_size_bh iclass. adds cd50a87ae2 [binutils][aarch64] New sve_size_013 iclass. adds 3c17238bc9 [binutils][aarch64] New SVE_SHRIMM_UNPRED_22 operand. adds 1be5f94f9c [binutils][aarch64] New sve_shift_tsz_bhsd iclass. adds 31e36ab341 [binutils][aarch64] New SVE_Zm4_11_INDEX operand. adds fd1dc4a0c1 [binutils][aarch64] New sve_size_tsz_bhs iclass. adds 28ed815ad2 [binutils][aarch64] New SVE_SHLIMM_UNPRED_22 operand. adds 42e6288f9f [binutils][aarch64] Add SVE2 instructions. adds e111c7d1eb [binutils][aarch64] Add SVE2 tests adds 63b667adb4 [gdb/testsuite] Fix gdb.arch/amd64-tailcall-self.S adds 8de09632ff [gas][testsuite] Don't specify arch in testsuite output adds bda678b9e5 Update printing of optional operands during disassembly. adds f3e606a3db Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gas/ChangeLog | 55 + gas/config/tc-aarch64.c | 70 +- gas/doc/c-aarch64.texi | 10 + gas/testsuite/gas/aarch64/illegal-sve2-aes.d | 20 + gas/testsuite/gas/aarch64/illegal-sve2-bitperm.d | 19 + gas/testsuite/gas/aarch64/illegal-sve2-sha3.d | 6 + gas/testsuite/gas/aarch64/illegal-sve2-sm4.d | 8 + gas/testsuite/gas/aarch64/illegal-sve2-sve1ext.d | 4 + gas/testsuite/gas/aarch64/illegal-sve2-sve1ext.l | 128 + gas/testsuite/gas/aarch64/illegal-sve2.d | 4 + gas/testsuite/gas/aarch64/illegal-sve2.l | 3322 +++++++ gas/testsuite/gas/aarch64/illegal-sve2.s | 2062 ++++ gas/testsuite/gas/aarch64/sve1-extended-sve2.s | 137 + gas/testsuite/gas/aarch64/sve2.d | 1301 +++ gas/testsuite/gas/aarch64/sve2.s | 1595 ++++ gas/testsuite/gas/ppc/476.d | 4 +- gas/testsuite/gas/ppc/power6.d | 4 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.arch/amd64-tailcall-self.S | 24 +- include/ChangeLog | 60 + include/opcode/aarch64.h | 20 + ld/ChangeLog | 5 + ld/scripttempl/pru.sc | 4 +- opcodes/ChangeLog | 166 + opcodes/aarch64-asm-2.c | 84 +- opcodes/aarch64-asm.c | 31 +- opcodes/aarch64-dis-2.c | 10353 ++++++++++++++------- opcodes/aarch64-dis.c | 55 + opcodes/aarch64-opc-2.c | 10 +- opcodes/aarch64-opc.c | 54 +- opcodes/aarch64-opc.h | 6 + opcodes/aarch64-tbl.h | 476 +- opcodes/ppc-dis.c | 17 +- 34 files changed, 16453 insertions(+), 3668 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-aes.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-bitperm.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-sha3.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-sm4.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-sve1ext.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2-sve1ext.l create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2.d create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2.l create mode 100644 gas/testsuite/gas/aarch64/illegal-sve2.s create mode 100644 gas/testsuite/gas/aarch64/sve1-extended-sve2.s create mode 100644 gas/testsuite/gas/aarch64/sve2.d create mode 100644 gas/testsuite/gas/aarch64/sve2.s