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-aarch64 in repository toolchain/ci/gdb.
from edbc15e6c4 gdb: remove use of vfprintf_filtered new 867b8c308a gas: copy st_size only if unset new 056b6f879d gdb: remove some unused buildsym-legacy functions new 59dfe8ad84 gdb: rename start_symtab/end_symtab to start_compunit_symtab [...] new 81eaa50610 Handle ghost entities in symbol lookup new c3f2a3738a Remove null sentinel from 'attributes' new 45016746f1 Fix bug in Ada attributes lexing new 28c4b1ffaa Enable "set debug parser" for Ada new 1e237aba22 Refactor expression completion new c66ed94ae9 Implement completion for Ada attributes new 67700be286 Refactor ada-lex.l:processId new 02a8d05fc6 Remove the Ada DOT_ALL token new 484e7c5ff5 Consolidate single-char tokens in ada-lex.l new d4da1b2c1b Add context-sensitive field name completion to Ada parser
The 13 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/mdebugread.c | 5 +- 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/xcoffread.c | 28 ++-- 33 files changed, 799 insertions(+), 497 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