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-allmodconfig in repository toolchain/ci/binutils-gdb.
from 035801cebe ld: Add --no-print-map-discarded option adds 548791769d xtensa: gas: put .literal_position at section start adds f8aecf3cc9 xtensa: gas: clean up literal management code adds 6f2b771531 xtensa: gas: convert tests to run_dump_tests adds c0b4cd4655 xtensa: gas: add relaxations tests adds 02cf60c7a4 Make "msg" const in internal_vproblem adds 9f0272f854 gdb/riscv: Handle empty C++ structs during argument passing adds 41077b6625 gdb: Fix alignment computation for structs with only static fields adds a9158a863c gdb/riscv: Remove riscv_type_alignment function adds 3822612df0 Automatic date update in version.in adds 62253a6147 gdb: Remove LANG_MAGIC adds e5a1a79a4e Testsuite: Add gdbserver sysroot test adds 3bbec4bd95 Fix thinko in linker documentation. adds 51196bbc56 Another fix for GDB styling adds d04ebfb817 GAS: tc-s12z.c: int -> bfd_boolean adds e5a557ac01 S12Z: opcodes: Replace "operator" with "optr". adds 8114a5c51e GAS: S12Z: Remove definition of macro TC_M68K.
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gas/ChangeLog | 76 ++++ gas/config/tc-s12z.c | 412 ++++++++++----------- gas/config/tc-s12z.h | 3 - gas/config/tc-xtensa.c | 136 ++++--- gas/testsuite/gas/xtensa/all.exp | 99 +---- gas/testsuite/gas/xtensa/auto-litpools-first1.d | 6 +- gas/testsuite/gas/xtensa/auto-litpools-first2.d | 10 +- gas/testsuite/gas/xtensa/auto-litpools.d | 6 +- gas/testsuite/gas/xtensa/entry_align.d | 3 + gas/testsuite/gas/xtensa/entry_align.l | 2 + gas/testsuite/gas/xtensa/entry_misalign.d | 7 + gas/testsuite/gas/xtensa/entry_misalign2.d | 7 + gas/testsuite/gas/xtensa/j_too_far.d | 3 + gas/testsuite/gas/xtensa/j_too_far.l | 2 + gas/testsuite/gas/xtensa/loop-relax-2.d | 7 + gas/testsuite/gas/xtensa/loop-relax.d | 14 + gas/testsuite/gas/xtensa/loop-relax.s | 58 +++ gas/testsuite/gas/xtensa/loop_align.d | 7 + gas/testsuite/gas/xtensa/loop_misalign.d | 7 + .../gas/xtensa/text-section-literals-1a.d | 18 + gas/testsuite/gas/xtensa/text-section-literals-2.d | 9 + gas/testsuite/gas/xtensa/text-section-literals-2.s | 3 + .../gas/xtensa/text-section-literals-2a.d | 10 + gas/testsuite/gas/xtensa/text-section-literals-3.d | 11 + gas/testsuite/gas/xtensa/text-section-literals-3.s | 3 + gas/testsuite/gas/xtensa/text-section-literals-4.d | 9 + gas/testsuite/gas/xtensa/text-section-literals-4.s | 3 + .../gas/xtensa/text-section-literals-4a.d | 10 + gas/testsuite/gas/xtensa/trampoline-2.d | 4 + gas/testsuite/gas/xtensa/trampoline-2.l | 1 - gas/testsuite/gas/xtensa/xtensa-err.exp | 8 +- gdb/ChangeLog | 65 ++++ gdb/ada-lang.c | 3 +- gdb/c-lang.c | 12 +- gdb/d-lang.c | 3 +- gdb/f-lang.c | 3 +- gdb/gdbtypes.c | 12 +- gdb/go-lang.c | 3 +- gdb/language.c | 6 +- gdb/language.h | 8 - gdb/m2-lang.c | 3 +- gdb/objc-lang.c | 3 +- gdb/opencl-lang.c | 3 +- gdb/p-lang.c | 3 +- gdb/riscv-tdep.c | 213 ++++++----- gdb/rust-lang.c | 3 +- gdb/testsuite/ChangeLog | 12 + gdb/testsuite/gdb.base/align.exp | 24 +- gdb/testsuite/gdb.server/sysroot.c | 25 ++ gdb/testsuite/gdb.server/sysroot.exp | 77 ++++ gdb/testsuite/lib/gdbserver-support.exp | 16 +- gdb/utils.c | 6 +- ld/ChangeLog | 6 + ld/ld.texi | 2 +- opcodes/ChangeLog | 5 + opcodes/s12z-dis.c | 2 +- opcodes/s12z-opc.c | 52 +-- opcodes/s12z-opc.h | 4 +- 59 files changed, 947 insertions(+), 583 deletions(-) create mode 100644 gas/testsuite/gas/xtensa/entry_align.d create mode 100644 gas/testsuite/gas/xtensa/entry_align.l create mode 100644 gas/testsuite/gas/xtensa/entry_misalign.d create mode 100644 gas/testsuite/gas/xtensa/entry_misalign2.d create mode 100644 gas/testsuite/gas/xtensa/j_too_far.d create mode 100644 gas/testsuite/gas/xtensa/j_too_far.l create mode 100644 gas/testsuite/gas/xtensa/loop-relax-2.d create mode 100644 gas/testsuite/gas/xtensa/loop-relax.d create mode 100644 gas/testsuite/gas/xtensa/loop-relax.s create mode 100644 gas/testsuite/gas/xtensa/loop_align.d create mode 100644 gas/testsuite/gas/xtensa/loop_misalign.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-1a.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-2.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-2.s create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-2a.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-3.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-3.s create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-4.d create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-4.s create mode 100644 gas/testsuite/gas/xtensa/text-section-literals-4a.d create mode 100644 gas/testsuite/gas/xtensa/trampoline-2.d delete mode 100644 gas/testsuite/gas/xtensa/trampoline-2.l create mode 100644 gdb/testsuite/gdb.server/sysroot.c create mode 100644 gdb/testsuite/gdb.server/sysroot.exp