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-defconfig in repository toolchain/binutils-gdb.
from 24bce9bbe5 Fix Solaris build adds ed2df75c51 Fix spurious semicolon in sparc-linux-nat.c adds 6a75ea85b1 Automatic date update in version.in adds 4207142d6a Handle ELF compressed header alignment correctly by setting [...] adds 35ba4bc019 Tighten the constraints for warning about NOPs for the MSP 4 [...] adds 9fca35fc34 AArch64: Fix regression in Cortex A53 erratum when PIE. (PR [...] adds 131a5a648d Initialize *uncompressed_align_pow_p to 0 adds a5990ada63 LD: Convert `%P: %H:' to `%H:' in error messages adds aff68bd041 MIPS/LD: Continue processing with refused relocations in PIC code adds 3c7687b9cd MIPS/LD: Accept high-part relocations in PIC code with absol [...]
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 52 ++++ bfd/bfd-in2.h | 6 +- bfd/bfd.c | 20 +- bfd/compress.c | 37 ++- bfd/elf.c | 5 +- bfd/elfnn-aarch64.c | 78 +++++- bfd/elfxx-mips.c | 15 +- bfd/version.h | 2 +- binutils/ChangeLog | 9 + binutils/readelf.c | 18 -- binutils/testsuite/binutils-all/dw2-3.rS | 2 +- binutils/testsuite/binutils-all/dw2-3.rt | 2 +- gas/ChangeLog | 35 +++ gas/config/tc-msp430.c | 296 +++++++++++++++++----- gas/testsuite/gas/msp430/bad.l | 21 +- gas/testsuite/gas/msp430/msp430.exp | 11 + gas/testsuite/gas/msp430/nop-dint-430.d | 32 +++ gas/testsuite/gas/msp430/nop-dint-430.l | 9 + gas/testsuite/gas/msp430/nop-dint-430x-ignore.d | 8 + gas/testsuite/gas/msp430/nop-dint-430x-silent.d | 31 +++ gas/testsuite/gas/msp430/nop-dint-430x.d | 32 +++ gas/testsuite/gas/msp430/nop-dint-430x.l | 9 + gas/testsuite/gas/msp430/nop-dint.s | 37 +++ gas/testsuite/gas/msp430/nop-eint-430.d | 31 +++ gas/testsuite/gas/msp430/nop-eint-430.l | 3 + gas/testsuite/gas/msp430/nop-eint-430x-ignore.d | 8 + gas/testsuite/gas/msp430/nop-eint-430x-silent.d | 47 ++++ gas/testsuite/gas/msp430/nop-eint-430x.d | 48 ++++ gas/testsuite/gas/msp430/nop-eint-430x.l | 20 ++ gas/testsuite/gas/msp430/nop-eint.s | 44 ++++ gas/testsuite/gas/msp430/nop-int-430.d | 4 + gas/testsuite/gas/msp430/nop-int-430.l | 3 + gas/testsuite/gas/msp430/nop-int-430x-silent.d | 5 + gas/testsuite/gas/msp430/nop-int-430x.d | 4 + gas/testsuite/gas/msp430/nop-int-430x.l | 10 + gas/testsuite/gas/msp430/nop-int.s | 74 ++++++ gdb/ChangeLog | 6 + gdb/sparc-linux-nat.c | 2 +- ld/ChangeLog | 31 +++ ld/ldmain.c | 6 +- ld/testsuite/ld-aarch64/aarch64-elf.exp | 1 + ld/testsuite/ld-aarch64/erratum843419_tls_ie.d | 49 ++++ ld/testsuite/ld-aarch64/erratum843419_tls_ie.s | 43 ++++ ld/testsuite/ld-mips-elf/mips-elf.exp | 7 + ld/testsuite/ld-mips-elf/pic-reloc-0.d | 7 + ld/testsuite/ld-mips-elf/pic-reloc-1.d | 14 + ld/testsuite/ld-mips-elf/pic-reloc-2.d | 7 + ld/testsuite/ld-mips-elf/pic-reloc-3.d | 7 + ld/testsuite/ld-mips-elf/pic-reloc-4.d | 9 + ld/testsuite/ld-mips-elf/pic-reloc-absolute-hi.ld | 6 + ld/testsuite/ld-mips-elf/pic-reloc-absolute-lo.ld | 6 + ld/testsuite/ld-mips-elf/pic-reloc-j.s | 11 + ld/testsuite/ld-mips-elf/pic-reloc-lui.s | 13 + ld/testsuite/ld-mips-elf/pic-reloc-ordinary.ld | 6 + 54 files changed, 1173 insertions(+), 126 deletions(-) create mode 100644 gas/testsuite/gas/msp430/nop-dint-430.d create mode 100644 gas/testsuite/gas/msp430/nop-dint-430.l create mode 100644 gas/testsuite/gas/msp430/nop-dint-430x-ignore.d create mode 100644 gas/testsuite/gas/msp430/nop-dint-430x-silent.d create mode 100644 gas/testsuite/gas/msp430/nop-dint-430x.d create mode 100644 gas/testsuite/gas/msp430/nop-dint-430x.l create mode 100644 gas/testsuite/gas/msp430/nop-dint.s create mode 100644 gas/testsuite/gas/msp430/nop-eint-430.d create mode 100644 gas/testsuite/gas/msp430/nop-eint-430.l create mode 100644 gas/testsuite/gas/msp430/nop-eint-430x-ignore.d create mode 100644 gas/testsuite/gas/msp430/nop-eint-430x-silent.d create mode 100644 gas/testsuite/gas/msp430/nop-eint-430x.d create mode 100644 gas/testsuite/gas/msp430/nop-eint-430x.l create mode 100644 gas/testsuite/gas/msp430/nop-eint.s create mode 100644 gas/testsuite/gas/msp430/nop-int-430.d create mode 100644 gas/testsuite/gas/msp430/nop-int-430.l create mode 100644 gas/testsuite/gas/msp430/nop-int-430x-silent.d create mode 100644 gas/testsuite/gas/msp430/nop-int-430x.d create mode 100644 gas/testsuite/gas/msp430/nop-int-430x.l create mode 100644 gas/testsuite/gas/msp430/nop-int.s create mode 100644 ld/testsuite/ld-aarch64/erratum843419_tls_ie.d create mode 100644 ld/testsuite/ld-aarch64/erratum843419_tls_ie.s create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-0.d create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-1.d create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-2.d create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-3.d create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-4.d create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-absolute-hi.ld create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-absolute-lo.ld create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-j.s create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-lui.s create mode 100644 ld/testsuite/ld-mips-elf/pic-reloc-ordinary.ld