This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-arm-spec2k6-Os_LTO in repository toolchain/ci/binutils-gdb.
from d0509ba443 Fix compile warning in symtab.c adds 25602020bc Automatic date update in version.in adds e3ec872f80 Convert the RX target to make use of target descriptions. adds beadd3e84e dwarf2read: replace gdb::optional<bool> with enum adds c9d136dade Automatic date update in version.in adds 23c13d4299 dwarf2read: fix compilation issue with gcc 4.8 adds db3b6ecc28 RISC-V: Improve li expansion for better code density. adds 37606e67df PR24938, Null Pointer Dereference in debug.c:debug_write_type adds d9c4ba536c Use raw strings on gdb.python/py-xmethods.exp (and fix Pytho [...] adds b694989f50 [gdb/testsuite] Make skip_libstdcxx_probe_tests return 1 if true adds 5c31b35808 [gdb, c++] Improve error message when using libstdcxx withou [...] adds 9aa5520697 Factor out the common code in lookup_{static,global}_symbol adds e8fffdff93 Automatic date update in version.in adds c4a23bf878 Add support for the MVE VMOV instruction to the ARM assemble [...] adds 4acfdd20c9 gdb: Add new -n flag to some info commands adds ec1b0fbb8d Improve the DWARF decoder's ability to describe the DW_AT_di [...] adds 550105b779 Fix compiler warning in linux-namespaces.c adds 72dd1784ef Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 29 ++ binutils/debug.c | 5 +- binutils/dwarf.c | 414 +++++++++++++++++++-- binutils/testsuite/binutils-all/dwarf-attributes.S | 8 +- binutils/testsuite/binutils-all/dwarf-attributes.W | 72 ++-- gas/ChangeLog | 8 + gas/config/tc-arm.c | 6 +- gas/config/tc-riscv.c | 38 +- gas/testsuite/gas/arm/mve-vmov-1.d | 25 ++ gas/testsuite/gas/arm/mve-vmov-1.s | 6 + gas/testsuite/gas/arm/mve-vorr.d | 400 ++++++++++---------- gas/testsuite/gas/riscv/li32.d | 17 + gas/testsuite/gas/riscv/li32.s | 5 + gas/testsuite/gas/riscv/li64.d | 44 +++ gas/testsuite/gas/riscv/li64.s | 9 + gdb/ChangeLog | 90 +++++ gdb/NEWS | 7 + gdb/break-catch-throw.c | 6 +- gdb/cli/cli-utils.c | 65 +--- gdb/cli/cli-utils.h | 39 +- gdb/doc/ChangeLog | 9 + gdb/doc/gdb.texinfo | 25 +- gdb/dwarf2read.c | 16 +- gdb/features/Makefile | 2 + gdb/features/rx.c | 80 ++++ gdb/features/rx.xml | 74 ++++ gdb/nat/linux-namespaces.c | 2 +- gdb/python/python.c | 4 +- gdb/rx-tdep.c | 160 +++----- gdb/stack.c | 77 +++- gdb/symtab.c | 222 +++++++---- gdb/symtab.h | 3 +- gdb/testsuite/ChangeLog | 27 ++ gdb/testsuite/gdb.base/info-fun.exp | 97 ++--- gdb/testsuite/gdb.base/info-var-f1.c | 24 ++ gdb/testsuite/gdb.base/info-var-f2.c | 26 ++ gdb/testsuite/gdb.base/info-var.exp | 60 +++ gdb/testsuite/gdb.base/info-var.h | 18 + gdb/testsuite/gdb.cp/exceptprint.exp | 2 +- gdb/testsuite/gdb.cp/no-libstdcxx-probe.exp | 41 ++ gdb/testsuite/gdb.mi/mi-catch-cpp-exceptions.exp | 2 +- gdb/testsuite/gdb.python/py-xmethods.py | 36 +- gdb/testsuite/lib/gdb.exp | 9 +- opcodes/ChangeLog | 6 + opcodes/arm-dis.c | 23 ++ 46 files changed, 1688 insertions(+), 652 deletions(-) create mode 100644 gas/testsuite/gas/riscv/li32.d create mode 100644 gas/testsuite/gas/riscv/li32.s create mode 100644 gas/testsuite/gas/riscv/li64.d create mode 100644 gas/testsuite/gas/riscv/li64.s create mode 100644 gdb/features/rx.c create mode 100644 gdb/features/rx.xml create mode 100644 gdb/testsuite/gdb.base/info-var-f1.c create mode 100644 gdb/testsuite/gdb.base/info-var-f2.c create mode 100644 gdb/testsuite/gdb.base/info-var.exp create mode 100644 gdb/testsuite/gdb.base/info-var.h create mode 100644 gdb/testsuite/gdb.cp/no-libstdcxx-probe.exp