This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-arm in repository toolchain/ci/gdb.
from edbc15e6c4 gdb: remove use of vfprintf_filtered adds 867b8c308a gas: copy st_size only if unset adds 056b6f879d gdb: remove some unused buildsym-legacy functions adds 59dfe8ad84 gdb: rename start_symtab/end_symtab to start_compunit_symtab [...] adds 81eaa50610 Handle ghost entities in symbol lookup adds c3f2a3738a Remove null sentinel from 'attributes' adds 45016746f1 Fix bug in Ada attributes lexing adds 28c4b1ffaa Enable "set debug parser" for Ada adds 1e237aba22 Refactor expression completion adds c66ed94ae9 Implement completion for Ada attributes adds 67700be286 Refactor ada-lex.l:processId adds 02a8d05fc6 Remove the Ada DOT_ALL token adds 484e7c5ff5 Consolidate single-char tokens in ada-lex.l adds d4da1b2c1b Add context-sensitive field name completion to Ada parser new 4994e74b7a Avoid undefined behavior in gdbscm_make_breakpoint new 85b25bd975 Simplify windows-nat.c solib handling new 04ae91ea52 Use auto_obstack in windows-nat.c new 44c6a4106e Use unique_ptr in the Windows thread list new fc0b013e44 Remove windows_thread_info destructor new 0578e87f93 Remove some globals from nat/windows-nat.c
The 6 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: gas/config/obj-elf.c | 24 +- gas/testsuite/gas/elf/elf.exp | 1 + gas/testsuite/gas/elf/size.d | 14 + gas/testsuite/gas/elf/size.s | 23 + gdb/ada-exp.h | 23 + gdb/ada-exp.y | 163 ++++++- gdb/ada-lang.c | 12 + gdb/ada-lex.l | 155 ++++--- gdb/buildsym-legacy.c | 108 +---- gdb/buildsym-legacy.h | 67 +-- gdb/buildsym.c | 64 +-- gdb/buildsym.h | 14 +- gdb/coffread.c | 32 +- gdb/completer.c | 92 +--- gdb/ctfread.c | 16 +- gdb/dbxread.c | 10 +- gdb/dwarf2/cu.c | 4 +- gdb/dwarf2/cu.h | 10 +- gdb/dwarf2/read.c | 15 +- gdb/eval.c | 87 ++++ gdb/expop.h | 20 +- gdb/expression.h | 22 +- gdb/guile/scm-breakpoint.c | 10 +- gdb/mdebugread.c | 5 +- gdb/nat/windows-nat.c | 60 +-- gdb/nat/windows-nat.h | 219 ++++----- gdb/parse.c | 84 ++-- gdb/parser-defs.h | 57 ++- gdb/stabsread.c | 4 +- gdb/testsuite/gdb.ada/formatted_ref.exp | 21 +- .../gdb.ada/{ptype_field.exp => ghost.exp} | 31 +- gdb/testsuite/gdb.ada/ghost/gpck.ads | 18 + gdb/testsuite/gdb.ada/ghost/main.adb | 22 + gdb/testsuite/gdb.ada/ghost/pck.ads | 19 + gdb/testsuite/gdb.ada/ptype_field.exp | 31 ++ gdb/windows-nat.c | 500 +++++++++++---------- gdb/xcoffread.c | 28 +- gdbserver/win32-low.cc | 245 +++++----- 38 files changed, 1326 insertions(+), 1004 deletions(-) create mode 100644 gas/testsuite/gas/elf/size.d create mode 100644 gas/testsuite/gas/elf/size.s copy gdb/testsuite/gdb.ada/{ptype_field.exp => ghost.exp} (50%) create mode 100644 gdb/testsuite/gdb.ada/ghost/gpck.ads create mode 100644 gdb/testsuite/gdb.ada/ghost/main.adb create mode 100644 gdb/testsuite/gdb.ada/ghost/pck.ads