This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 206f2a5777679e6d1ad21ce435f6e7af92e2d41a


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  206f2a5777679e6d1ad21ce435f6e7af92e2d41a (commit)
      from  540c2971fa25a14ae16a9bb14ba2f424b5f1ea96 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=206f2a5777679e6d1ad21ce435f6e7af92e2d41a

commit 206f2a5777679e6d1ad21ce435f6e7af92e2d41a
Author: Doug Evans <dje@google.com>
Date:   Tue Jan 14 18:30:31 2014 -0800

    psymtab cleanup patch 2/3
    
    This patch adds two typedefs:
    expand_symtabs_file_matcher_ftype
    expand_symtabs_symbol_matcher_ftype
    
    It also renames the NAME_MATCHER argument in expand_symtabs_matching.
    The function is named expand_symtabs_matching and it takes a name_matcher
    argument.  Name of what?  The symtab?  A symbol?
    I made it SYMBOL_MATCHER to make it clearer.
    
    	* symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
    	(expand_symtabs_symbol_matcher_ftype): New typedef.
    	(quick_symbol_functions.expand_symtabs_matching): Update to use.
    	expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
    	* symfile.c (expand_partial_symbol_names): Update to use
    	expand_symtabs_symbol_matcher_ftype.
    	* dwarf2read.c (dw2_expand_symtabs_matching): Update to use
    	expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
    	Arg name_matcher renamed to symbol_matcher.
    	* psymtab.c (recursively_search_psymtabs): Update to use
    	expand_symtabs_symbol_matcher_ftype.  Arg name_matcher renamed to
    	sym_matcher.
    	(expand_symtabs_matching_via_partial): Update to use
    	expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
    	Arg name_matcher renamed to symbol_matcher.

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog    |   18 ++++++++++++++++++
 gdb/dwarf2read.c |    6 +++---
 gdb/psymtab.c    |   12 ++++++------
 gdb/symfile.c    |    2 +-
 gdb/symfile.h    |   22 +++++++++++++++++-----
 5 files changed, 45 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]