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-mainline-allmodconfig in repository toolchain/ci/binutils-gdb.
from dfee856674 [gdb/testsuite] Update expected _gdb_major/_gdb_minor in def [...] adds b2caee6aaa gdb: Rename structures within ctfread.c adds 60ff3cd784 gdb/testsuite/ada: Handle missing debug info case adds 93370e8e7b Re: PowerPC PIC vs. DLL TLS issues adds c0ea7c52e1 Add support for new functionality in the msp430 backend of GCC. adds 606813d5cd Move top-level Makefile.def/Makefile.in to the top-level ChangeLog adds 51f1fdc3d2 Use gdb_static_assert in charset.c adds bad5c02618 Move declaration of vtbl_ptr_name to the header. adds f21410c03a Automatic date update in version.in adds 46e292ab0a S/390: Add support for z15 as CPU name.
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 11 ++ bfd/elf32-msp430.c | 87 ++++++++---- bfd/elf64-ppc.c | 4 +- bfd/version.h | 2 +- binutils/ChangeLog | 6 + binutils/readelf.c | 32 ++++- gas/ChangeLog | 24 ++++ gas/config/tc-msp430.c | 146 ++++++++++++++++++++- gas/config/tc-s390.c | 2 +- gas/doc/as.texi | 20 ++- gas/doc/c-msp430.texi | 12 ++ gas/doc/c-s390.texi | 4 +- gas/testsuite/gas/msp430/attr-430-small-bad.d | 4 + gas/testsuite/gas/msp430/attr-430-small-bad.l | 4 + gas/testsuite/gas/msp430/attr-430-small-good.d | 6 + gas/testsuite/gas/msp430/attr-430-small.s | 3 + gas/testsuite/gas/msp430/attr-430x-large-any-bad.d | 4 + gas/testsuite/gas/msp430/attr-430x-large-any-bad.l | 3 + .../gas/msp430/attr-430x-large-any-good.d | 6 + gas/testsuite/gas/msp430/attr-430x-large-any.s | 4 + .../gas/msp430/attr-430x-large-lower-bad.d | 4 + .../gas/msp430/attr-430x-large-lower-bad.l | 3 + .../gas/msp430/attr-430x-large-lower-good.d | 6 + gas/testsuite/gas/msp430/attr-430x-large-lower.s | 4 + gas/testsuite/gas/msp430/msp430.exp | 6 + gdb/ChangeLog | 28 +++- gdb/c-lang.h | 6 + gdb/charset.c | 12 +- gdb/cp-valprint.c | 2 +- gdb/ctfread.c | 28 ++-- gdb/stabsread.c | 6 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.ada/catch_ex_std.exp | 25 +++- include/ChangeLog | 5 + include/elf/msp430.h | 41 ++++++ ld/ChangeLog | 9 ++ ld/testsuite/ld-msp430-elf/attr-gnu-main.s | 8 ++ ld/testsuite/ld-msp430-elf/attr-gnu-obj.s | 2 + .../ld-msp430-elf/attr-gnu-region-lower-upper.d | 6 + ld/testsuite/ld-msp430-elf/attr-gnu-region-lower.d | 12 ++ ld/testsuite/ld-msp430-elf/attr-gnu-region-upper.d | 13 ++ ld/testsuite/ld-msp430-elf/msp430-elf.exp | 12 +- opcodes/s390-mkopc.c | 3 +- 43 files changed, 551 insertions(+), 79 deletions(-) create mode 100644 gas/testsuite/gas/msp430/attr-430-small-bad.d create mode 100644 gas/testsuite/gas/msp430/attr-430-small-bad.l create mode 100644 gas/testsuite/gas/msp430/attr-430-small-good.d create mode 100644 gas/testsuite/gas/msp430/attr-430-small.s create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-any-bad.d create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-any-bad.l create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-any-good.d create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-any.s create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-lower-bad.d create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-lower-bad.l create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-lower-good.d create mode 100644 gas/testsuite/gas/msp430/attr-430x-large-lower.s create mode 100644 ld/testsuite/ld-msp430-elf/attr-gnu-main.s create mode 100644 ld/testsuite/ld-msp430-elf/attr-gnu-obj.s create mode 100644 ld/testsuite/ld-msp430-elf/attr-gnu-region-lower-upper.d create mode 100644 ld/testsuite/ld-msp430-elf/attr-gnu-region-lower.d create mode 100644 ld/testsuite/ld-msp430-elf/attr-gnu-region-upper.d