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-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from 0826779b99 Fix printcmds.exp failure for wide strings tests. adds b58a68fe57 Fix "info break" + "catch catch" + -static-{libstdc++,libgcc} adds cb1e4e32c2 "catch catch/throw/rethrow", breakpoint -> catchpoint adds a38118e5d1 Make "maint info breakpoints" show "catch catch/throw/rethro [...] adds eb6ad40f24 Automatic date update in version.in adds e2d0f9803e Make bpstat_what::is_longjmp a bool adds 9fb4c7e9f0 Regenerate aarch64-pauth.c adds 166a82be89 Arm: Minor style cleanups adds b863685d70 Restore original GDB prompt in define.exp adds 89abbcc26d Arm: Create feature files for Arm target descriptions adds 4c462cb0ef Make some bpstat functions use bool adds 5c458ae8f5 Update breakpoint_1's documentation adds 43dd762689 arm-dis.c (print_insn_coprocessor): Rename index to index_operand. new 32372d80ca Specialize value_cast error message for Ada new 05b08ac160 Reduce manual reference counting in py-inferior.c
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/version.h | 2 +- gdb/ChangeLog | 105 +++++++ gdb/arm-linux-nat.c | 27 +- gdb/break-catch-throw.c | 33 ++- gdb/breakpoint.c | 319 ++++++++++----------- gdb/breakpoint.h | 26 +- gdb/doc/ChangeLog | 6 + gdb/doc/gdb.texinfo | 18 +- gdb/features/Makefile | 30 +- gdb/features/aarch64-pauth.c | 1 - gdb/features/arm/arm-core.c | 31 ++ gdb/features/arm/arm-fpa.c | 23 ++ gdb/features/arm/arm-m-profile-with-fpa.c | 39 +++ gdb/features/arm/arm-m-profile-with-fpa.xml | 39 +++ gdb/features/arm/arm-m-profile.c | 31 ++ gdb/features/arm/arm-vfpv2.c | 30 ++ gdb/features/arm/arm-vfpv3.c | 46 +++ gdb/features/arm/xscale-iwmmxt.c | 57 ++++ gdb/gdbserver/ChangeLog | 7 + gdb/gdbserver/linux-arm-low.c | 46 ++- gdb/python/py-breakpoint.c | 8 +- gdb/python/py-inferior.c | 36 +-- gdb/python/py-infthread.c | 8 +- gdb/python/python-internal.h | 2 +- gdb/target-descriptions.c | 3 +- gdb/testsuite/ChangeLog | 22 ++ gdb/testsuite/gdb.base/define.exp | 11 +- gdb/testsuite/gdb.cp/except-multi-location-lib.cc | 25 ++ gdb/testsuite/gdb.cp/except-multi-location-main.cc | 36 +++ gdb/testsuite/gdb.cp/except-multi-location.exp | 87 ++++++ gdb/testsuite/gdb.cp/exception.exp | 18 +- gdb/testsuite/gdb.mi/mi-catch-cpp-exceptions.exp | 2 +- gdb/testsuite/gdb.python/py-breakpoint.exp | 5 +- gdb/valops.c | 3 +- opcodes/ChangeLog | 5 + opcodes/arm-dis.c | 10 +- 36 files changed, 880 insertions(+), 317 deletions(-) create mode 100644 gdb/features/arm/arm-core.c create mode 100644 gdb/features/arm/arm-fpa.c create mode 100644 gdb/features/arm/arm-m-profile-with-fpa.c create mode 100644 gdb/features/arm/arm-m-profile-with-fpa.xml create mode 100644 gdb/features/arm/arm-m-profile.c create mode 100644 gdb/features/arm/arm-vfpv2.c create mode 100644 gdb/features/arm/arm-vfpv3.c create mode 100644 gdb/features/arm/xscale-iwmmxt.c create mode 100644 gdb/testsuite/gdb.cp/except-multi-location-lib.cc create mode 100644 gdb/testsuite/gdb.cp/except-multi-location-main.cc create mode 100644 gdb/testsuite/gdb.cp/except-multi-location.exp