This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 1da5c9a485 PR22202, buffer overflow in parse_die new 96235dc1ac S390: Add guarded-storage register definitions and tdescs new 1b63490c91 S390: Add guarded-storage register support to GDB new ad3396348e S390: Add guarded-storage register support to gdbserver new 289e23aa03 S390: Document guarded-storage register support
The 4 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: gdb/ChangeLog | 45 ++++++++ gdb/NEWS | 3 + gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 8 ++ gdb/features/Makefile | 5 + gdb/features/s390-gs-linux64.c | 198 ++++++++++++++++++++++++++++++++++++ gdb/features/s390-gs-linux64.xml | 28 +++++ gdb/features/s390-gs.xml | 13 +++ gdb/features/s390-gsbc.xml | 13 +++ gdb/features/s390x-gs-linux64.c | 182 +++++++++++++++++++++++++++++++++ gdb/features/s390x-gs-linux64.xml | 27 +++++ gdb/gdbserver/ChangeLog | 20 ++++ gdb/gdbserver/configure.srv | 8 ++ gdb/gdbserver/linux-s390-low.c | 68 ++++++++++++- gdb/gdbserver/linux-s390-tdesc.h | 9 ++ gdb/regformats/s390-gs-linux64.dat | 133 ++++++++++++++++++++++++ gdb/regformats/s390x-gs-linux64.dat | 117 +++++++++++++++++++++ gdb/s390-linux-nat.c | 23 ++++- gdb/s390-linux-tdep.c | 94 ++++++++++++++++- gdb/s390-linux-tdep.h | 16 ++- 20 files changed, 1007 insertions(+), 8 deletions(-) create mode 100644 gdb/features/s390-gs-linux64.c create mode 100644 gdb/features/s390-gs-linux64.xml create mode 100644 gdb/features/s390-gs.xml create mode 100644 gdb/features/s390-gsbc.xml create mode 100644 gdb/features/s390x-gs-linux64.c create mode 100644 gdb/features/s390x-gs-linux64.xml create mode 100644 gdb/regformats/s390-gs-linux64.dat create mode 100644 gdb/regformats/s390x-gs-linux64.dat