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-next-allnoconfig in repository toolchain/ci/binutils-gdb.
from 21401fc7bf Duplicate output sections in scripts adds af30c400ea Do not include parser-defs.h from c-lang.h adds cbfa382abb Remove two unnecessary variables from evaluate_subexp_standard adds 53651de80f libctf, include: support foreign-endianness symtabs with CTF adds 96c61be508 binutils: readelf: support CTF dicts with non-native-endian symtabs adds e8cda20905 libctf: Pass format argument to asprintf adds 93bbe484a4 Automatic date update in version.in adds 58349d00f4 elf: Get the real kept section adds 9ed0136bff PR26936 testsuite fixes adds 239ca5e497 gdb/aarch64: Add named flags for FPCR and FPSR registers adds 647cebce12 Prevent a memory allocation failure when parsing corrupt DWA [...] adds bab6ead85f Automatic date update in version.in adds 2c6f3e56cb ELF: Support .noinit and .persistent sections adds 21c33bcbe3 Allow spaces in the name of the external preprocessor used b [...] adds b1eea24024 Add Rogerio Alves to gdb/MAINTAINERS. adds 3df8c6afdd gdb: fix potentially uninitialised variable adds ed5e05a2cf Automatic date update in version.in adds 8d748d1dc5 PR26907, segment contains empty SHT_NOBITS section adds b413232211 GDB: Fix detection of ELF support when configuring with -Wer [...] adds b214250c1e Automatic date update in version.in new 8ca751ee63 gold: Get linkonce/comdate sections for debugging sections new 568cbddc71 gold: Convert x86-64 GOTPCRELX only if addend == -4
The 2 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: bfd/ChangeLog | 24 ++++++ bfd/dwarf2.c | 25 ++++-- bfd/elf.c | 7 +- bfd/elflink.c | 19 ++++- bfd/version.h | 2 +- binutils/ChangeLog | 15 ++++ binutils/readelf.c | 3 + binutils/testsuite/lib/binutils-common.exp | 39 ++++++++++ binutils/windres.c | 8 +- gas/ChangeLog | 8 ++ gas/testsuite/gas/elf/elf.exp | 2 + gas/testsuite/gas/elf/section25.d | 12 +++ gas/testsuite/gas/elf/section25.s | 8 ++ gas/testsuite/gas/elf/section26.d | 12 +++ gas/testsuite/gas/elf/section26.s | 8 ++ gdb/ChangeLog | 26 +++++++ gdb/MAINTAINERS | 1 + gdb/acinclude.m4 | 1 + gdb/c-lang.h | 1 - gdb/configure | 2 + gdb/d-lang.c | 1 + gdb/eval.c | 12 +-- gdb/features/aarch64-fpu.c | 33 +++++++- gdb/features/aarch64-fpu.xml | 74 +++++++++++++++++- gdb/printcmd.c | 25 ++++-- gdb/rust-lang.c | 1 + gold/ChangeLog | 45 +++++++++++ gold/object.cc | 10 ++- gold/testsuite/Makefile.am | 41 +++++++++- gold/testsuite/Makefile.in | 49 +++++++++++- gold/testsuite/pr26936.sh | 55 +++++++++++++ gold/testsuite/pr26936a.s | 6 ++ gold/testsuite/pr26936b.s | 11 +++ gold/testsuite/pr26936c.s | 6 ++ gold/testsuite/pr26936d.s | 6 ++ gold/testsuite/x86_64_mov_to_lea.sh | 2 + gold/testsuite/x86_64_mov_to_lea5.s | 12 +++ gold/x86_64.cc | 117 ++++++++++++++++------------ include/ChangeLog | 7 ++ include/ctf-api.h | 30 +++---- ld/ChangeLog | 46 +++++++++++ ld/emulparams/armelf.sh | 18 ++--- ld/scripttempl/avr.sc | 2 +- ld/scripttempl/elf.sc | 28 +++++++ ld/scripttempl/elf32msp430.sc | 12 ++- ld/scripttempl/elfarcv2.sc | 2 +- ld/scripttempl/pru.sc | 2 +- ld/testsuite/ld-elf/noinit-sections-1.d | 9 +++ ld/testsuite/ld-elf/noinit-sections-2.d | 10 +++ ld/testsuite/ld-elf/noinit-sections-2.l | 5 ++ ld/testsuite/ld-elf/noinit-sections.s | 13 ++++ ld/testsuite/ld-elf/persistent-sections-1.d | 9 +++ ld/testsuite/ld-elf/persistent-sections-2.d | 10 +++ ld/testsuite/ld-elf/persistent-sections-2.l | 5 ++ ld/testsuite/ld-elf/persistent-sections.s | 13 ++++ ld/testsuite/ld-elf/pr26907.d | 9 +++ ld/testsuite/ld-elf/pr26907.ld | 7 ++ ld/testsuite/ld-elf/pr26907.s | 9 +++ ld/testsuite/ld-elf/pr26936.d | 13 ++++ ld/testsuite/ld-elf/pr26936a.s | 6 ++ ld/testsuite/ld-elf/pr26936b.s | 23 ++++++ ld/testsuite/ld-elf/pr26936c.s | 6 ++ libctf/ChangeLog | 32 ++++++++ libctf/ctf-archive.c | 35 +++++++-- libctf/ctf-create.c | 1 + libctf/ctf-dump.c | 2 +- libctf/ctf-impl.h | 2 + libctf/ctf-open-bfd.c | 7 ++ libctf/ctf-open.c | 56 +++++++------ libctf/ctf-util.c | 62 ++++++++++++--- libctf/libctf.ver | 2 + libctf/swap.h | 24 ++++++ 72 files changed, 1078 insertions(+), 168 deletions(-) create mode 100644 gas/testsuite/gas/elf/section25.d create mode 100644 gas/testsuite/gas/elf/section25.s create mode 100644 gas/testsuite/gas/elf/section26.d create mode 100644 gas/testsuite/gas/elf/section26.s create mode 100755 gold/testsuite/pr26936.sh create mode 100644 gold/testsuite/pr26936a.s create mode 100644 gold/testsuite/pr26936b.s create mode 100644 gold/testsuite/pr26936c.s create mode 100644 gold/testsuite/pr26936d.s create mode 100644 gold/testsuite/x86_64_mov_to_lea5.s create mode 100644 ld/testsuite/ld-elf/noinit-sections-1.d create mode 100644 ld/testsuite/ld-elf/noinit-sections-2.d create mode 100644 ld/testsuite/ld-elf/noinit-sections-2.l create mode 100644 ld/testsuite/ld-elf/noinit-sections.s create mode 100644 ld/testsuite/ld-elf/persistent-sections-1.d create mode 100644 ld/testsuite/ld-elf/persistent-sections-2.d create mode 100644 ld/testsuite/ld-elf/persistent-sections-2.l create mode 100644 ld/testsuite/ld-elf/persistent-sections.s create mode 100644 ld/testsuite/ld-elf/pr26907.d create mode 100644 ld/testsuite/ld-elf/pr26907.ld create mode 100644 ld/testsuite/ld-elf/pr26907.s create mode 100644 ld/testsuite/ld-elf/pr26936.d create mode 100644 ld/testsuite/ld-elf/pr26936a.s create mode 100644 ld/testsuite/ld-elf/pr26936b.s create mode 100644 ld/testsuite/ld-elf/pr26936c.s