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-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from 847d518374 Bogus "final link failed" messages adds d241b91073 x86/Intel: correct MOVSD and CMPSD handling adds ad7c657b9e add missing ChangeLog entry for d241b91073 adds 760f7560fd [gdb/doc] Fix some typos adds 3d63690a03 gdb/testsuite: Add gdb_test_name variable adds 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
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 | 37 ++++++ gas/config/tc-i386.c | 4 +- gas/config/tc-msp430.c | 146 ++++++++++++++++++++- gas/doc/as.texi | 17 +++ gas/doc/c-msp430.texi | 12 ++ gas/testsuite/gas/i386/i386.exp | 2 + gas/testsuite/gas/i386/intel-cmps.s | 49 +++++++ gas/testsuite/gas/i386/intel-cmps32.d | 40 ++++++ gas/testsuite/gas/i386/intel-cmps64.d | 50 +++++++ gas/testsuite/gas/i386/intel-movs.s | 31 +++++ gas/testsuite/gas/i386/intel-movs32.d | 21 +++ gas/testsuite/gas/i386/intel-movs64.d | 28 ++++ gas/testsuite/gas/i386/string-bad.l | 20 +-- 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/doc/ChangeLog | 6 + gdb/doc/gdb.texinfo | 2 +- gdb/doc/guile.texi | 2 +- gdb/doc/python.texi | 2 +- gdb/stabsread.c | 6 +- gdb/testsuite/ChangeLog | 14 ++ gdb/testsuite/gdb.ada/catch_ex_std.exp | 25 +++- gdb/testsuite/gdb.base/annota1.exp | 58 ++++---- gdb/testsuite/gdb.base/default.exp | 4 +- gdb/testsuite/lib/gdb.exp | 38 +++++- 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/ChangeLog | 6 + opcodes/i386-opc.tbl | 8 +- opcodes/i386-tbl.h | 16 +-- 59 files changed, 892 insertions(+), 135 deletions(-) create mode 100644 gas/testsuite/gas/i386/intel-cmps.s create mode 100644 gas/testsuite/gas/i386/intel-cmps32.d create mode 100644 gas/testsuite/gas/i386/intel-cmps64.d 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