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-allnoconfig in repository toolchain/ci/binutils-gdb.
from 037311d1df gas: Generate a new section for SHF_GNU_RETAIN adds 6244c1196a gdb: make discrete_position return optional adds 1f8d288117 gdb: make get_discrete_bounds return bool adds 14c09924a0 gdb: split get_discrete_bounds in two adds 5b56203a7c gdb: fix value_subscript when array upper bound is not known adds 6ad368b8ca gdb: address review comments of previous series adds d9c3a9c036 Unify all operators into std-operator.def adds 5cde1d8222 Handle 128-bit constants for fixed point adds 12932e2ca1 Use add_angle_brackets in ada_lookup_encoded_symbol adds cd6b05c1b2 Automatic date update in version.in adds 729a53530e RISC-V: Control fence.i and csr instructions by zifencei and zicsr. adds 8152e0407c RISC-V: Dump CSR according to the elf privileged spec attributes. adds c2137f55ad RISC-V: Add sext.[bh] and zext.[bhw] pseudo instructions. adds 15cc148fb8 gdb: move bfd_open_from_target_memory to gdb_bfd adds 6afcd2d416 [AArch64] SVE/FPSIMD fixup for big endian adds ae1f4d2d99 Remove spurious newline on debug printf adds 2ccee230f8 Fix off-by-one error in ada_fold_name adds 1006702837 [gdb/testsuite] Fix gdb.tui/new-layout.exp with tcl 8.5 new 33e06c75aa Automatic date update in version.in new 4483a8e72a gdb/testsuite: fix race condition in gdb.multi/multi-arch-exec.exp
The 2 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 | 12 ++ bfd/elfxx-riscv.c | 59 ++++-- bfd/version.h | 2 +- gas/ChangeLog | 31 +++ gas/config/tc-riscv.c | 47 ++++- gas/testsuite/gas/riscv/ext-32.d | 39 ++++ gas/testsuite/gas/riscv/ext-64.d | 51 +++++ gas/testsuite/gas/riscv/ext.s | 38 ++++ gas/testsuite/gas/riscv/march-imply-i.s | 24 +++ .../{march-imply-i2p0.d => march-imply-i2p0-01.d} | 3 +- gas/testsuite/gas/riscv/march-imply-i2p0-02.d | 7 + gas/testsuite/gas/riscv/march-imply-i2p1-01.d | 3 + gas/testsuite/gas/riscv/march-imply-i2p1-01.l | 21 ++ gas/testsuite/gas/riscv/march-imply-i2p1-02.d | 7 + gas/testsuite/gas/riscv/march-imply-i2p1.d | 6 - gdb/ChangeLog | 96 +++++++++ gdb/aarch64-linux-tdep.c | 114 +++++++++-- gdb/aarch64-tdep.h | 1 - gdb/ada-lang.c | 38 ++-- gdb/ada-operator.def | 98 --------- gdb/ada-valprint.c | 2 +- gdb/arch/aarch64.h | 2 + gdb/breakpoint.c | 2 +- gdb/c-lang.c | 4 +- gdb/dwarf2/read.c | 82 +++++--- gdb/eval.c | 4 +- gdb/expprint.c | 2 - gdb/expression.h | 9 - gdb/f-array-walker.h | 4 +- gdb/f-lang.c | 2 +- gdb/fortran-operator.def | 35 ---- gdb/gdb_bfd.c | 85 ++++++++ gdb/gdb_bfd.h | 6 + gdb/gdbtypes.c | 227 ++++++++++++++------- gdb/gdbtypes.h | 20 +- gdb/jit.c | 85 +------- gdb/m2-typeprint.c | 4 +- gdb/m2-valprint.c | 6 +- gdb/nat/aarch64-sve-linux-ptrace.c | 77 +++++-- gdb/p-valprint.c | 3 +- gdb/std-operator.def | 105 ++++++++++ gdb/testsuite/ChangeLog | 18 ++ gdb/testsuite/gdb.base/flexible-array-member.c | 70 +++++++ gdb/testsuite/gdb.base/flexible-array-member.exp | 66 ++++++ gdb/testsuite/gdb.multi/multi-arch-exec.c | 7 + gdb/testsuite/gdb.tui/new-layout.exp | 16 +- gdb/trad-frame.c | 46 ++++- gdb/trad-frame.h | 19 ++ gdb/valarith.c | 24 ++- gdb/valops.c | 4 +- include/ChangeLog | 8 + include/opcode/riscv.h | 10 +- opcodes/ChangeLog | 20 ++ opcodes/disassemble.c | 2 +- opcodes/disassemble.h | 1 + opcodes/riscv-dis.c | 37 +++- opcodes/riscv-opc.c | 45 ++-- 57 files changed, 1378 insertions(+), 478 deletions(-) create mode 100644 gas/testsuite/gas/riscv/ext-32.d create mode 100644 gas/testsuite/gas/riscv/ext-64.d create mode 100644 gas/testsuite/gas/riscv/ext.s create mode 100644 gas/testsuite/gas/riscv/march-imply-i.s rename gas/testsuite/gas/riscv/{march-imply-i2p0.d => march-imply-i2p0-01.d} (83%) create mode 100644 gas/testsuite/gas/riscv/march-imply-i2p0-02.d create mode 100644 gas/testsuite/gas/riscv/march-imply-i2p1-01.d create mode 100644 gas/testsuite/gas/riscv/march-imply-i2p1-01.l create mode 100644 gas/testsuite/gas/riscv/march-imply-i2p1-02.d delete mode 100644 gas/testsuite/gas/riscv/march-imply-i2p1.d delete mode 100644 gdb/ada-operator.def delete mode 100644 gdb/fortran-operator.def create mode 100644 gdb/testsuite/gdb.base/flexible-array-member.c create mode 100644 gdb/testsuite/gdb.base/flexible-array-member.exp