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-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from 268a13a5a3 Rename common to gdbsupport adds 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
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gdb/ChangeLog | 75 +++++++ gdb/arm-linux-nat.c | 27 +-- gdb/break-catch-throw.c | 33 +-- gdb/breakpoint.c | 233 +++++++++------------ gdb/breakpoint.h | 14 +- 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/target-descriptions.c | 3 +- gdb/testsuite/ChangeLog | 28 +++ gdb/testsuite/gdb.base/define.exp | 11 +- gdb/testsuite/gdb.base/printcmds.exp | 29 ++- 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 +- 31 files changed, 782 insertions(+), 258 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