This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_profiled in repository toolchain/ci/binutils-gdb.
from 0e30a3b0f2 Remove fall throughs in core_target::xfer_partial. adds cac97c41c2 gprofng: Skip jsynprog with a broken javac adds 9ef0cc6c3a Automatic date update in version.in adds ecc263d676 ubsan: logical_input_line signed integer overflow adds 9e2c342294 Tidy gas current_frame before exit adds 5fac3f02ed PR28977 tc-i386.c internal error in parse_register adds 3b374308d3 RISC-V: Prefetch hint instructions and operand set adds 41d6ac5da6 RISC-V: Cache management instructions adds 22c3694052 x86: fold certain AVX2 templates into their AVX counterparts adds a548407ec2 x86: drop stray CheckRegSize from VEXTRACT{F,I}32X4 adds c4d0963383 x86: also fold remaining multi-vector-size shift insns adds a747a286b9 Fix ld-arm bug in encoding of blx calls jumping from thumb t [...] adds f0cf07f341 gdb: run black to format some Python files adds 0a30596cfa Fix Build issues due to patch "gprofng: a new GNU profiler" new da729c5ccd Implement gdbarch_stack_frame_destroyed_p for aarch64
The 1 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/ChangeLog | 6 + bfd/elf32-arm.c | 18 +- bfd/elfxx-riscv.c | 9 + bfd/version.h | 2 +- gas/cond.c | 1 + gas/config/tc-i386.c | 58 +- gas/config/tc-riscv.c | 18 + gas/input-scrub.c | 16 +- gas/testsuite/gas/riscv/zicbom-fail.d | 3 + gas/testsuite/gas/riscv/zicbom-fail.l | 7 + gas/testsuite/gas/riscv/zicbom-fail.s | 7 + gas/testsuite/gas/riscv/zicbom.d | 15 + gas/testsuite/gas/riscv/zicbom.s | 7 + gas/testsuite/gas/riscv/zicbop-fail.d | 3 + gas/testsuite/gas/riscv/zicbop-fail.l | 4 + gas/testsuite/gas/riscv/zicbop-fail.s | 4 + gas/testsuite/gas/riscv/zicbop.d | 12 + gas/testsuite/gas/riscv/zicbop.s | 4 + gas/testsuite/gas/riscv/zicboz-fail.d | 3 + gas/testsuite/gas/riscv/zicboz-fail.l | 5 + gas/testsuite/gas/riscv/zicboz-fail.s | 5 + gas/testsuite/gas/riscv/zicboz.d | 13 + gas/testsuite/gas/riscv/zicboz.s | 5 + gdb/aarch64-tdep.c | 22 + gdb/gdbarch.py | 1 + gdb/gdbcopyright.py | 5 +- gprofng/Makefile.am | 2 + gprofng/Makefile.in | 3 + gprofng/configure | 80 +- gprofng/configure.ac | 30 + gprofng/doc/Makefile.in | 1 + gprofng/gp-display-html/Makefile.in | 1 + gprofng/libcollector/Makefile.in | 4 +- gprofng/libcollector/configure | 57 +- gprofng/libcollector/configure.ac | 13 - gprofng/src/Makefile.am | 10 +- gprofng/src/Makefile.in | 21 +- gprofng/src/gethrtime.c | 4 + gprofng/testsuite/gprofng.display/display.exp | 8 +- .../testsuite/gprofng.display/mttest/gethrtime.c | 5 + include/opcode/riscv-opc.h | 16 + include/opcode/riscv.h | 3 + opcodes/i386-opc.tbl | 345 +-- opcodes/i386-tbl.h | 3195 ++++---------------- opcodes/riscv-dis.c | 4 + opcodes/riscv-opc.c | 9 + 46 files changed, 1158 insertions(+), 2906 deletions(-) create mode 100644 gas/testsuite/gas/riscv/zicbom-fail.d create mode 100644 gas/testsuite/gas/riscv/zicbom-fail.l create mode 100644 gas/testsuite/gas/riscv/zicbom-fail.s create mode 100644 gas/testsuite/gas/riscv/zicbom.d create mode 100644 gas/testsuite/gas/riscv/zicbom.s create mode 100644 gas/testsuite/gas/riscv/zicbop-fail.d create mode 100644 gas/testsuite/gas/riscv/zicbop-fail.l create mode 100644 gas/testsuite/gas/riscv/zicbop-fail.s create mode 100644 gas/testsuite/gas/riscv/zicbop.d create mode 100644 gas/testsuite/gas/riscv/zicbop.s create mode 100644 gas/testsuite/gas/riscv/zicboz-fail.d create mode 100644 gas/testsuite/gas/riscv/zicboz-fail.l create mode 100644 gas/testsuite/gas/riscv/zicboz-fail.s create mode 100644 gas/testsuite/gas/riscv/zicboz.d create mode 100644 gas/testsuite/gas/riscv/zicboz.s