This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-check_binutils in repository toolchain/ci/binutils-gdb.
from 5f8c2a1507 Update config.sub and config.guess adds d750c713c9 Update libiberty with latest sources from gcc mainline adds c8bad65eee is_relocatable_executable --exclude-libs failure adds b281a04ff0 ld sysroot-prefix test fails adds b5ff370e96 Fix TUI source window drawing adds 1b6d4bb223 Redraw both spaces between line numbers and source code adds 5519536196 Prevent flickering when redrawing the TUI source window adds b09ad6eae9 libctf: do not print array declarators backwards adds 57f97d0e6d libctf, ld: CTF dumper changes for consistency adds 91e7ce2fd7 libctf, ld: more dumper improvements adds ffeece6ac2 libctf, ld: prohibit getting the size or alignment of forwards adds 37002871ac libctf, ld: dump enums: generally improve dump formatting adds 1038406a8f libctf: rip out BFD_DEPENDENCIES / BFD_LIBADD adds c59e30ed17 libctf: new testsuite
No new revisions were added by this update.
Summary of changes: ChangeLog | 92 ++ Makefile.def | 4 +- Makefile.in | 13 + bfd/ChangeLog | 5 + bfd/elflink.c | 7 +- gdb/ChangeLog | 18 + gdb/tui/tui-source.c | 4 +- gdb/tui/tui-winsource.c | 9 +- include/ChangeLog | 5 + include/ctf-api.h | 5 +- ld/ChangeLog | 87 ++ ld/testsuite/ld-ctf/array.d | 10 +- ld/testsuite/ld-ctf/conflicting-cycle-1.B-1.d | 9 +- ld/testsuite/ld-ctf/conflicting-cycle-1.B-2.d | 11 +- ld/testsuite/ld-ctf/conflicting-cycle-1.parent.d | 5 +- ld/testsuite/ld-ctf/conflicting-cycle-2.A-1.d | 11 +- ld/testsuite/ld-ctf/conflicting-cycle-2.A-2.d | 13 +- ld/testsuite/ld-ctf/conflicting-cycle-2.parent.d | 13 +- ld/testsuite/ld-ctf/conflicting-cycle-3.C-1.d | 11 +- ld/testsuite/ld-ctf/conflicting-cycle-3.C-2.d | 13 +- ld/testsuite/ld-ctf/conflicting-cycle-3.parent.d | 7 +- ld/testsuite/ld-ctf/conflicting-enums.d | 22 +- ld/testsuite/ld-ctf/conflicting-typedefs.d | 14 +- ld/testsuite/ld-ctf/cross-tu-cyclic-conflicting.d | 31 +- .../ld-ctf/cross-tu-cyclic-nonconflicting.d | 28 +- ld/testsuite/ld-ctf/cross-tu-into-cycle.d | 24 +- ld/testsuite/ld-ctf/cross-tu-noncyclic.d | 20 +- ld/testsuite/ld-ctf/cycle-1.d | 11 +- ld/testsuite/ld-ctf/cycle-2.A.d | 13 +- ld/testsuite/ld-ctf/cycle-2.B.d | 13 +- ld/testsuite/ld-ctf/cycle-2.C.d | 13 +- ld/testsuite/ld-ctf/data-func-conflicted.d | 31 +- ld/testsuite/ld-ctf/diag-cttname-null.d | 9 +- ld/testsuite/ld-ctf/diag-cuname.d | 13 +- ld/testsuite/ld-ctf/diag-parlabel.d | 13 +- .../ld-ctf/diag-wrong-magic-number-mixed.d | 14 +- ld/testsuite/ld-ctf/enums.c | 3 + ld/testsuite/ld-ctf/enums.d | 54 ++ ld/testsuite/ld-ctf/forward.c | 2 + ld/testsuite/ld-ctf/forward.d | 21 + ld/testsuite/ld-ctf/function.d | 7 +- ld/testsuite/ld-ctf/slice.d | 16 +- ld/testsuite/ld-ctf/super-sub-cycles.d | 29 +- ld/testsuite/ld-scripts/sysroot-prefix.exp | 9 + libctf/ChangeLog | 91 ++ libctf/Makefile.am | 40 +- libctf/Makefile.in | 128 ++- libctf/configure | 36 +- libctf/configure.ac | 30 +- libctf/ctf-create.c | 50 +- libctf/ctf-decl.c | 10 +- libctf/ctf-dump.c | 331 ++++--- libctf/ctf-types.c | 32 +- libctf/testsuite/config/default.exp | 59 ++ libctf/testsuite/lib/ctf-lib.exp | 409 ++++++++ .../testsuite/libctf-lookup/ambiguous-struct-A.c | 8 + .../testsuite/libctf-lookup/ambiguous-struct-B.c | 5 + libctf/testsuite/libctf-lookup/ambiguous-struct.c | 51 + libctf/testsuite/libctf-lookup/ambiguous-struct.lk | 4 + libctf/testsuite/libctf-lookup/enum-ctf.c | 8 + libctf/testsuite/libctf-lookup/enum.c | 78 ++ libctf/testsuite/libctf-lookup/enum.lk | 10 + libctf/testsuite/libctf-lookup/lookup.exp | 43 + libiberty/ChangeLog | 117 ++- libiberty/configure | 1 + libiberty/configure.ac | 1 + libiberty/cp-demangle.c | 140 ++- libiberty/cp-demangle.h | 4 + libiberty/pex-win32.c | 2 +- libiberty/rust-demangle.c | 1010 +++++++++++++++++++- libiberty/simple-object-elf.c | 11 +- libiberty/strstr.c | 16 +- libiberty/strverscmp.c | 2 +- libiberty/testsuite/demangle-expected | 19 + libiberty/testsuite/rust-demangle-expected | 134 ++- 75 files changed, 3088 insertions(+), 554 deletions(-) create mode 100644 ld/testsuite/ld-ctf/enums.c create mode 100644 ld/testsuite/ld-ctf/enums.d create mode 100644 ld/testsuite/ld-ctf/forward.c create mode 100644 ld/testsuite/ld-ctf/forward.d create mode 100644 libctf/testsuite/config/default.exp create mode 100644 libctf/testsuite/lib/ctf-lib.exp create mode 100644 libctf/testsuite/libctf-lookup/ambiguous-struct-A.c create mode 100644 libctf/testsuite/libctf-lookup/ambiguous-struct-B.c create mode 100644 libctf/testsuite/libctf-lookup/ambiguous-struct.c create mode 100644 libctf/testsuite/libctf-lookup/ambiguous-struct.lk create mode 100644 libctf/testsuite/libctf-lookup/enum-ctf.c create mode 100644 libctf/testsuite/libctf-lookup/enum.c create mode 100644 libctf/testsuite/libctf-lookup/enum.lk create mode 100644 libctf/testsuite/libctf-lookup/lookup.exp