This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from bec858ea4d PowerPC conditional branch test new e3980ce2a9 Make increase_expout_size static new 1201a264c8 Remove parser_state "initial_size" parameter new fa9f5be683 Turn parse_gdbarch into a method new 73923d7eed Turn parse_language into a method new 37eedb3982 Make base class for parser_state new 1e58a4a4db Move expression_context_* globals to parser_state new 28aaf3fdf9 Remove paren_depth global new 8621b685bf Move comma_terminates global to parser_state new 5776fca307 Move lexptr and prev_lexptr to parser_state new 43476f0b1b Move arglist_len et al to parser_state new 2a61252965 Move completion parsing to parser_state new dac43e327d Move type stack handling to a new class new 699bd4cfa8 Move innermost_block_tracker global to parse_state
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: gdb/ChangeLog | 299 +++++++++++++++++++++++++++ gdb/Makefile.in | 2 + gdb/ada-exp.y | 25 +-- gdb/ada-lang.c | 44 ++-- gdb/ada-lex.l | 26 ++- gdb/amd64-linux-tdep.c | 32 +-- gdb/breakpoint.c | 15 +- gdb/c-exp.y | 436 ++++++++++++++++++++------------------- gdb/d-exp.y | 113 +++++----- gdb/dtrace-probe.c | 17 +- gdb/expression.h | 12 +- gdb/f-exp.y | 112 +++++----- gdb/gdbarch.c | 4 +- gdb/gdbarch.h | 6 +- gdb/gdbarch.sh | 4 +- gdb/go-exp.y | 94 +++++---- gdb/language.h | 8 +- gdb/m2-exp.y | 99 +++++---- gdb/objc-lang.c | 2 +- gdb/p-exp.y | 126 ++++++------ gdb/parse.c | 546 ++++++++----------------------------------------- gdb/parser-defs.h | 306 ++++++++++++++------------- gdb/printcmd.c | 10 +- gdb/rust-exp.y | 330 ++++++++++++++++-------------- gdb/stap-probe.c | 2 +- gdb/stap-probe.h | 7 +- gdb/type-stack.c | 209 +++++++++++++++++++ gdb/type-stack.h | 203 ++++++++++++++++++ gdb/varobj.c | 9 +- 29 files changed, 1781 insertions(+), 1317 deletions(-) create mode 100644 gdb/type-stack.c create mode 100644 gdb/type-stack.h