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 52ce35e289 Minor NEWS rearrangement adds 0735b091ab Do not emit style escape sequences to log file adds 49455d8bbd Automatic date update in version.in adds 09e4c4e1f1 gdb: Remove file path from test name adds afda45a206 gdb: Remove unused parameter adds 00df30ae1e gdb: New function to open source file and compute line charpos data adds 0d3abd8cc9 gdb: Remove an update of current_source_line and current_sou [...] adds ec8e2b6d30 gdb: Don't allow annotations to influence what else GDB prints adds 30056ea04a gdb/mi: New commands to catch C++ exceptions adds 584a927c5a gdb/fortran: Show the type for non allocated / associated types adds 6ac6a19371 Automatic date update in version.in adds 399aaebd1a Make gdb.base/index-cache.exp work with readnow board (PR 24669) adds e79be6e5f3 Fix some whitespace issues in gdb ChangeLogs adds 730ead81df Remove some NULL checks from the TUI adds 93cb9841d6 gdb/testsuite: Improve detection of bug gdb/24541 adds cafb34387d Remove unnecessary casts of NULL adds 395f9c9114 Replace uses of concat with xstrdup adds c497330687 Write index for dwz -m file adds bf5142e7fe gdb: Remove unused signal mask
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gdb/ChangeLog | 193 ++++++++++++++- gdb/NEWS | 4 + gdb/ada-lang.c | 3 +- gdb/annotate.c | 27 +- gdb/annotate.h | 10 +- gdb/ax-gdb.c | 2 +- gdb/break-catch-throw.c | 42 ++-- gdb/breakpoint.c | 17 +- gdb/breakpoint.h | 20 ++ gdb/cli/cli-logging.c | 2 +- gdb/cli/cli-setshow.c | 2 +- gdb/coffread.c | 8 +- gdb/doc/ChangeLog | 7 + gdb/doc/gdb.texinfo | 140 +++++++++++ gdb/dwarf-index-cache.c | 31 ++- gdb/dwarf-index-write.c | 272 ++++++++++++--------- gdb/dwarf-index-write.h | 13 +- gdb/dwarf2read.c | 32 +-- gdb/dwarf2read.h | 38 +++ gdb/f-typeprint.c | 90 ++++--- gdb/gdb_bfd.c | 2 +- gdb/gdbserver/ChangeLog | 8 +- gdb/infcmd.c | 2 +- gdb/linespec.c | 3 +- gdb/linux-nat.c | 6 - gdb/mdebugread.c | 41 ++-- gdb/mi/mi-cmd-catch.c | 71 ++++++ gdb/mi/mi-cmds.c | 6 + gdb/mi/mi-cmds.h | 3 + gdb/mipsread.c | 2 +- gdb/source-cache.c | 8 +- gdb/source.c | 56 +---- gdb/source.h | 22 +- gdb/stabsread.c | 6 +- gdb/stack.c | 63 +++-- gdb/testsuite/ChangeLog | 74 +++++- gdb/testsuite/gdb.base/annota1.exp | 4 +- gdb/testsuite/gdb.base/index-cache.exp | 49 ++-- gdb/testsuite/gdb.base/style-logging.exp | 71 ++++++ gdb/testsuite/gdb.cp/annota2.exp | 1 + gdb/testsuite/gdb.cp/annota3.exp | 2 +- gdb/testsuite/gdb.dwarf2/gdb-index.exp | 15 ++ gdb/testsuite/gdb.fortran/pointers.f90 | 80 ++++++ gdb/testsuite/gdb.fortran/print_type.exp | 114 +++++++++ gdb/testsuite/gdb.fortran/vla-ptype.exp | 12 +- gdb/testsuite/gdb.fortran/vla-type.exp | 7 +- gdb/testsuite/gdb.fortran/vla-value.exp | 10 +- .../gdb.mi/mi-catch-cpp-exceptions.cc} | 67 +++-- gdb/testsuite/gdb.mi/mi-catch-cpp-exceptions.exp | 200 +++++++++++++++ gdb/testsuite/gdb.mi/mi-vla-fortran.exp | 8 +- gdb/testsuite/lib/mi-support.exp | 11 +- gdb/tui/tui-data.c | 41 ++-- gdb/tui/tui-io.c | 2 +- gdb/tui/tui-layout.c | 2 +- gdb/tui/tui-regs.c | 6 +- gdb/tui/tui-source.c | 4 +- gdb/tui/tui-stack.c | 5 +- gdb/tui/tui-win.c | 12 +- gdb/tui/tui-windata.c | 2 +- gdb/tui/tui-wingeneral.c | 14 +- gdb/tui/tui-winsource.c | 7 +- gdb/ui-file.c | 32 +++ gdb/ui-file.h | 16 ++ gdb/ui-style.h | 4 +- gdb/utils.c | 2 +- gdb/valops.c | 8 +- gdb/value.c | 2 +- gdb/xcoffread.c | 11 +- 69 files changed, 1626 insertions(+), 523 deletions(-) create mode 100644 gdb/testsuite/gdb.base/style-logging.exp create mode 100644 gdb/testsuite/gdb.fortran/pointers.f90 create mode 100755 gdb/testsuite/gdb.fortran/print_type.exp copy gdb/{dwarf-index-write.h => testsuite/gdb.mi/mi-catch-cpp-exceptions.cc} (51%) create mode 100644 gdb/testsuite/gdb.mi/mi-catch-cpp-exceptions.exp