This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-arm-spec2k6-Oz_LTO in repository toolchain/ci/binutils-gdb.
from 5783e150b2 (re-)fix the regcache leaks when detaching from an executable. adds 258876ee34 Automatic date update in version.in adds 582942f456 More block constification adds a930ebcdf9 Don't include symtab.h from expression.h adds 6640a367bf Remove null_block_symbol adds 9a93502fa8 Fix testsuite hangs when gdb_test_multiple body errors out adds 53b2f36bf6 AArch64: Fix disassembler bug with out-of-order sections adds 5145776164 AArch64: Fix AArch64 disassembler mapping symbol search adds 60df3720d7 AArch64: Have -D override mapping symbol as documented. adds 796d6298bb Arm: Fix Arm disassembler mapping symbol search. adds 0f83012ea0 Add linux_get_hwcap adds d45963c2b2 Fix s390 build
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 30 +++ binutils/objdump.c | 1 + .../testsuite/binutils-all/aarch64/in-order-all.d | 43 ++++ binutils/testsuite/binutils-all/aarch64/in-order.d | 28 +++ .../binutils-all/aarch64/out-of-order-all.d | 43 ++++ .../testsuite/binutils-all/aarch64/out-of-order.T | 14 ++ .../testsuite/binutils-all/aarch64/out-of-order.d | 27 +++ .../testsuite/binutils-all/aarch64/out-of-order.s | 28 +++ binutils/testsuite/binutils-all/arm/in-order-all.d | 50 +++++ binutils/testsuite/binutils-all/arm/in-order.d | 28 +++ binutils/testsuite/binutils-all/arm/objdump.exp | 14 ++ .../testsuite/binutils-all/arm/out-of-order-all.d | 50 +++++ binutils/testsuite/binutils-all/arm/out-of-order.T | 14 ++ binutils/testsuite/binutils-all/arm/out-of-order.d | 27 +++ binutils/testsuite/binutils-all/arm/out-of-order.s | 29 +++ gdb/ChangeLog | 117 ++++++++++ gdb/aarch64-linux-nat.c | 8 +- gdb/aarch64-linux-tdep.c | 16 +- gdb/aarch64-linux-tdep.h | 3 - gdb/ada-lang.c | 11 +- gdb/arm-linux-nat.c | 7 +- gdb/arm-linux-tdep.c | 5 +- gdb/block.c | 8 +- gdb/block.h | 2 +- gdb/c-exp.y | 4 +- gdb/c-valprint.c | 3 +- gdb/coffread.c | 2 +- gdb/cp-namespace.c | 26 +-- gdb/cp-support.c | 2 +- gdb/cp-support.h | 2 +- gdb/d-exp.y | 1 - gdb/d-namespace.c | 15 +- gdb/dwarf2read.c | 6 +- gdb/eval.c | 2 +- gdb/expression.h | 3 - gdb/f-exp.y | 1 - gdb/gdbtypes.c | 6 +- gdb/inline-frame.c | 5 +- gdb/linespec.c | 4 +- gdb/linux-tdep.c | 22 ++ gdb/linux-tdep.h | 8 + gdb/p-valprint.c | 3 +- gdb/parse.c | 3 +- gdb/ppc-linux-nat.c | 39 +--- gdb/ppc-linux-tdep.c | 5 +- gdb/psymtab.c | 12 +- gdb/python/py-framefilter.c | 6 +- gdb/python/py-symtab.c | 4 +- gdb/rust-lang.c | 2 +- gdb/s390-linux-nat.c | 4 +- gdb/s390-linux-tdep.c | 3 +- gdb/solib-darwin.c | 2 +- gdb/solib-spu.c | 2 +- gdb/solib-svr4.c | 2 +- gdb/solib.c | 2 +- gdb/spu-tdep.c | 2 +- gdb/symfile-debug.c | 2 +- gdb/symfile.h | 2 +- gdb/symmisc.c | 6 +- gdb/symtab.c | 43 ++-- gdb/symtab.h | 4 - gdb/testsuite/ChangeLog | 5 + gdb/testsuite/lib/gdb.exp | 23 +- include/ChangeLog | 4 + include/dis-asm.h | 6 + ld/ChangeLog | 5 + ld/testsuite/ld-arm/jump-reloc-veneers-cond-long.d | 2 +- ld/testsuite/ld-arm/jump-reloc-veneers-long.d | 5 +- opcodes/ChangeLog | 21 ++ opcodes/aarch64-dis.c | 52 ++++- opcodes/arm-dis.c | 249 +++++++++------------ 72 files changed, 894 insertions(+), 343 deletions(-) create mode 100644 binutils/testsuite/binutils-all/aarch64/in-order-all.d create mode 100644 binutils/testsuite/binutils-all/aarch64/in-order.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order-all.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.T create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.d create mode 100644 binutils/testsuite/binutils-all/aarch64/out-of-order.s create mode 100644 binutils/testsuite/binutils-all/arm/in-order-all.d create mode 100644 binutils/testsuite/binutils-all/arm/in-order.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order-all.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.T create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.d create mode 100644 binutils/testsuite/binutils-all/arm/out-of-order.s