This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/binutils-gdb.
from 53e123a578 Adjust location of readline in sim/erc32 adds a32a7fdc94 Automatic date update in version.in adds 043bcbaf81 [gdb/testsuite] Fix xfail handling in gdb.threads/gcore-thread.exp adds d811a7cf74 [gdb/tui] Fix len_without_escapes in tui-disasm.c adds bd3d1480a8 ld: warn about PE base relocations to sections above .reloc adds da0835aebe gas: missing (re-)initialization of local variable in fixup_ [...] adds eac4eb8ecb Fix a problem assembling AArch64 sources when a relocation i [...] adds 340d00fb78 [gdb/breakpoints] Workaround missing line-table entry adds 4db29512ce C99 NEWS and README adds a2e6677373 Return symbol from symbol_at_address_func adds e23446bf96 Automatic date update in version.in adds b12389f219 Fix pr27217 testcase failure adds 79c024436b gdb/py: fix gdb.parameter('data-directory') adds 1fd999d909 gdb: Handle missing .debug_str section adds 61dee7220e gdb/testsuite: fix fission support in the Dwarf assembler adds 56d467f4ee gdb: handle relative paths to DWO files adds efd86e5b0f sim: m32c: opc2c: remove unused vlist variable adds 5e18990f1f gdb: move cheap pointer equality check earlier in types_equal adds 30ab358668 gdb: allow casting to rvalue reference in more cases adds 0a703a4ced gdb/fortran: handle dynamic types within arrays and structures adds dc2b480f3d CTF: handle forward reference type adds e97007b64a gdb: make target_ops::follow_fork return void new 97bf40d859 PR27676, PowerPC missing extended dcbt, dcbtst mnemonics new ce7d813a0f PR27684, PowerPC missing mfsprg0 and others
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/version.h | 2 +- binutils/ChangeLog | 9 + binutils/NEWS | 2 + binutils/README | 33 +- binutils/objdump.c | 6 +- gas/ChangeLog | 42 +++ gas/config/tc-aarch64.c | 320 ++++++++++-------- gas/testsuite/gas/aarch64/pr27217.d | 15 + gas/testsuite/gas/aarch64/pr27217.s | 16 + gas/testsuite/gas/ppc/dcbt.d | 2 +- gas/testsuite/gas/ppc/power4_32.d | 6 +- gas/testsuite/gas/ppc/ppc.exp | 1 + gas/testsuite/gas/ppc/pr27676.d | 79 +++++ gas/testsuite/gas/ppc/pr27676.s | 71 ++++ gas/write.c | 3 +- gdb/ChangeLog | 81 +++++ gdb/ctfread.c | 78 ++++- gdb/dwarf2/read.c | 7 + gdb/dwarf2/section.c | 12 +- gdb/f-exp.h | 16 + gdb/f-exp.y | 9 +- gdb/f-lang.c | 40 +++ gdb/fbsd-nat.c | 4 +- gdb/fbsd-nat.h | 2 +- gdb/gdbtypes.c | 8 +- gdb/infcmd.c | 14 + gdb/infrun.c | 6 +- gdb/linux-nat.c | 4 +- gdb/linux-nat.h | 2 +- gdb/obsd-nat.c | 4 +- gdb/obsd-nat.h | 2 +- gdb/remote.c | 6 +- gdb/target-delegates.c | 22 +- gdb/target.c | 7 +- gdb/target.h | 8 +- gdb/testsuite/ChangeLog | 77 +++++ gdb/testsuite/gdb.base/ctf-ptype.c | 12 + gdb/testsuite/gdb.base/ctf-ptype.exp | 2 + gdb/testsuite/gdb.cp/rvalue-ref-params.cc | 19 ++ gdb/testsuite/gdb.cp/rvalue-ref-params.exp | 9 + gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp | 41 +++ ...w2-using-debug-str.c => fission-absolute-dwo.c} | 0 ...sing-debug-str.exp => fission-absolute-dwo.exp} | 66 +++- gdb/testsuite/gdb.dwarf2/fission-base.exp | 11 +- gdb/testsuite/gdb.dwarf2/fission-loclists-pie.exp | 11 +- gdb/testsuite/gdb.dwarf2/fission-loclists.exp | 11 +- gdb/testsuite/gdb.dwarf2/fission-multi-cu.S | 364 --------------------- .../{fission-multi-cu1.c => fission-multi-cu.c} | 19 ++ gdb/testsuite/gdb.dwarf2/fission-multi-cu.exp | 195 ++++++++++- gdb/testsuite/gdb.dwarf2/fission-multi-cu2.c | 24 -- ...w2-using-debug-str.c => fission-relative-dwo.c} | 0 ...sing-debug-str.exp => fission-relative-dwo.exp} | 63 +++- gdb/testsuite/gdb.dwarf2/fission-reread.exp | 15 +- gdb/testsuite/gdb.fortran/dynamic-ptype-whatis.exp | 158 +++++++++ gdb/testsuite/gdb.fortran/dynamic-ptype-whatis.f90 | 93 ++++++ gdb/testsuite/gdb.opt/inline-cmds.exp | 17 +- gdb/testsuite/gdb.python/py-parameter.exp | 51 +++ gdb/testsuite/gdb.threads/gcore-thread.exp | 20 +- gdb/testsuite/lib/dwarf.exp | 261 ++++++++++++--- gdb/top.c | 17 +- gdb/tui/tui-disasm.c | 7 +- gdb/valops.c | 21 +- include/ChangeLog | 5 + include/dis-asm.h | 10 +- ld/ChangeLog | 5 + ld/pe-dll.c | 11 +- opcodes/ChangeLog | 19 ++ opcodes/dis-buf.c | 6 +- opcodes/ppc-opc.c | 98 +++++- opcodes/s12z-dis.c | 25 +- sim/m32c/ChangeLog | 4 + sim/m32c/opc2c.c | 3 - 72 files changed, 1914 insertions(+), 795 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/pr27217.d create mode 100644 gas/testsuite/gas/aarch64/pr27217.s create mode 100644 gas/testsuite/gas/ppc/pr27676.d create mode 100644 gas/testsuite/gas/ppc/pr27676.s copy gdb/testsuite/gdb.dwarf2/{dw2-using-debug-str.c => fission-absolute-dwo.c} (100%) copy gdb/testsuite/gdb.dwarf2/{dw2-using-debug-str.exp => fission-absolute-dwo.exp} (53%) delete mode 100644 gdb/testsuite/gdb.dwarf2/fission-multi-cu.S rename gdb/testsuite/gdb.dwarf2/{fission-multi-cu1.c => fission-multi-cu.c} (72%) delete mode 100644 gdb/testsuite/gdb.dwarf2/fission-multi-cu2.c copy gdb/testsuite/gdb.dwarf2/{dw2-using-debug-str.c => fission-relative-dwo.c} (100%) copy gdb/testsuite/gdb.dwarf2/{dw2-using-debug-str.exp => fission-relative-dwo.exp} (55%) create mode 100644 gdb/testsuite/gdb.fortran/dynamic-ptype-whatis.exp create mode 100644 gdb/testsuite/gdb.fortran/dynamic-ptype-whatis.f90