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 3f702acd7d Make '{putchar,fputc}_unfiltered' use 'fputs_unfiltered' adds 6565bf67ad Automatic date update in version.in adds dda2980f54 PR25569, PDP11 ld -s clobbers last data byte adds 10a95fcc1f pdp11 reloc processing adds bd0cf5a6ba RISC-V: Support the ISA-dependent CSR checking. adds 2ca89224b1 RISC-V: Disable the CSR checking by default. adds 54b2aec10d RISC-V: Support the read-only CSR checking. adds 22b6cd7043 Fix latent bug in dwarf2_find_containing_comp_unit adds 24ac169ac5 gdb/testsuite: Regenerate the testglue if it is not in adds c7adb09f35 Fix typo in gdb/testsuite/ChangeLog adds a4425a57c7 Fuzzers whining about mach-o support adds 4f180d5396 Check for null result from gdb_demangle adds bd360d3048 gdb/testsuite: Add test for case where gdb_demangle returns NULL adds 1eb7317953 [gdb] Fix cc-with-dwz regression adds e94e944bf2 Fix two more mips-tdep.h declarations adds 755251522a [gdb/testsuite] Fix gdb.go/methods.exp adds d4d947ae37 Update partial_symtab comment
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 29 ++ bfd/aoutx.h | 179 ++++---- bfd/mach-o.c | 136 ++++-- bfd/pdp11.c | 260 +++++------ bfd/version.h | 2 +- binutils/ChangeLog | 5 + binutils/dwarf.c | 2 +- gas/ChangeLog | 69 +++ gas/config/obj-aout.c | 48 +- gas/config/tc-pdp11.c | 30 +- gas/config/tc-riscv.c | 188 +++++++- gas/doc/c-riscv.texi | 13 + gas/testsuite/gas/riscv/csr-dw-regnums.d | 2 +- gas/testsuite/gas/riscv/priv-reg-fail-fext.d | 3 + gas/testsuite/gas/riscv/priv-reg-fail-fext.l | 4 + .../gas/riscv/priv-reg-fail-read-only-01.d | 3 + .../gas/riscv/priv-reg-fail-read-only-01.l | 69 +++ .../gas/riscv/priv-reg-fail-read-only-01.s | 269 ++++++++++++ .../gas/riscv/priv-reg-fail-read-only-02.d | 3 + .../gas/riscv/priv-reg-fail-read-only-02.l | 25 ++ .../gas/riscv/priv-reg-fail-read-only-02.s | 90 ++++ gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.d | 3 + gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.l | 66 +++ gas/testsuite/gas/riscv/priv-reg.d | 2 +- gdb/ChangeLog | 35 ++ gdb/dwarf2/read.c | 96 +++- gdb/features/riscv/64bit-csr.xml | 65 --- gdb/features/riscv/rebuild-csr-xml.sh | 10 +- gdb/mips-tdep.h | 4 +- gdb/psympriv.h | 3 +- gdb/psymtab.c | 3 +- gdb/riscv-tdep.c | 6 +- gdb/riscv-tdep.h | 2 +- gdb/testsuite/ChangeLog | 20 + gdb/testsuite/gdb.dwarf2/cpp-linkage-name.c | 29 ++ gdb/testsuite/gdb.dwarf2/cpp-linkage-name.exp | 96 ++++ gdb/testsuite/gdb.go/methods.exp | 75 +++- gdb/testsuite/lib/gdb.exp | 13 +- include/ChangeLog | 5 + include/opcode/riscv-opc.h | 488 ++++++++++----------- opcodes/ChangeLog | 5 + opcodes/riscv-dis.c | 2 +- 42 files changed, 1817 insertions(+), 640 deletions(-) create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-fext.d create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-fext.l create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.d create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.l create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.s create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.d create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.l create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.s create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.d create mode 100644 gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.l create mode 100644 gdb/testsuite/gdb.dwarf2/cpp-linkage-name.c create mode 100644 gdb/testsuite/gdb.dwarf2/cpp-linkage-name.exp