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-Os_LTO in repository toolchain/ci/binutils-gdb.
from 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 adds 79e7ae11c7 Clean up some comments in minsyms.c adds 81a24d04df Note support for TLS variables on FreeBSD. adds e8fba7f6bb Fix relpp may be used uninitialized adds 24e31cf3aa Automatic date update in version.in adds 068ef30e9e Fix use-after-free in source_cache::get_source_lines
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 34 +++ binutils/objdump.c | 3 +- .../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 | 134 +++++++++++ gdb/NEWS | 5 + 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/minsyms.c | 49 +--- 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/source-cache.c | 6 + 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 +++++++++------------ 75 files changed, 934 insertions(+), 386 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