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-aarch64-spec2k6-Os_LTO in repository toolchain/ci/binutils-gdb.
from 1aa7f807d2 Automatic date update in version.in adds afc72f154d Prevent a potential illegal memory access in the DWARF parse [...] adds fe4b77d9e5 Updated Swedish translation for the gas sub-directory. adds 2600d80ccd PR24933, Memory leak in elf_x86_64_get_synthetic_symtab adds a7ba389645 Stop the BFD library from failing when encountering a second [...] adds 09f7b0de53 or1k: Fix incorrect value in PLT GOT entries, causing infinite loop adds de8af80891 Fix bug in nios2 prologue analysis. adds 2d41fa1165 Move gdb-dlfcn.[ch] to gdbsupport/ adds 8a9455cc82 Automatic date update in version.in adds 6d5554a605 PowerPC64 segfault in ppc64_elf_edit_toc adds 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 [...]
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 24 ++++ bfd/elf.c | 13 +- bfd/elf32-or1k.c | 7 +- bfd/elf64-ppc.c | 5 + bfd/elfxx-x86.c | 7 +- bfd/version.h | 2 +- binutils/ChangeLog | 14 ++ binutils/debug.c | 5 +- binutils/dwarf.c | 70 +++++----- gas/ChangeLog | 4 + gas/config/tc-riscv.c | 38 +++++- gas/po/sv.po | 71 ++++------ 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 | 56 ++++++++ gdb/Makefile.in | 4 +- gdb/NEWS | 2 + gdb/break-catch-throw.c | 6 +- gdb/compile/compile-c-support.c | 2 +- gdb/configure | 5 +- gdb/configure.ac | 3 +- gdb/doc/ChangeLog | 4 + gdb/doc/gdb.texinfo | 10 ++ gdb/dwarf2read.c | 16 ++- gdb/features/Makefile | 2 + gdb/features/rx.c | 80 ++++++++++++ gdb/features/rx.xml | 74 +++++++++++ gdb/gdbserver/ChangeLog | 7 + gdb/gdbserver/Makefile.in | 2 + gdb/gdbserver/config.in | 3 + gdb/gdbserver/configure | 2 +- gdb/gdbsupport/common.m4 | 3 +- gdb/{ => gdbsupport}/gdb-dlfcn.c | 2 +- gdb/{ => gdbsupport}/gdb-dlfcn.h | 0 gdb/jit.c | 2 +- gdb/nios2-tdep.c | 8 +- gdb/rx-tdep.c | 160 +++++++---------------- gdb/symtab.c | 11 +- gdb/testsuite/ChangeLog | 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 +- 46 files changed, 646 insertions(+), 261 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 rename gdb/{ => gdbsupport}/gdb-dlfcn.c (99%) rename gdb/{ => gdbsupport}/gdb-dlfcn.h (100%) create mode 100644 gdb/testsuite/gdb.cp/no-libstdcxx-probe.exp