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. 540c2971fa25a14ae16a9bb14ba2f424b5f1ea96


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  540c2971fa25a14ae16a9bb14ba2f424b5f1ea96 (commit)
      from  818d220a6fe3d0512a226188e9164245a02c9185 (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=540c2971fa25a14ae16a9bb14ba2f424b5f1ea96

commit 540c2971fa25a14ae16a9bb14ba2f424b5f1ea96
Author: Doug Evans <dje@google.com>
Date:   Tue Jan 14 18:19:51 2014 -0800

    psymtab cleanup patch 1/3
    
    This is the first of a set of three patches to cleanup psymtab.c a bit.
    
    Basically, these two functions do not belong in psymtab.c:
    expand_partial_symbol_names, map_partial_symbol_filenames,
    and "partial" does not belong in the function name.
    
    This first patch moves them to a better location.
    The second patch adds some typedefs for function parameters to
    quick_symbol_functions.expand_symtabs_matching.
    The third patch removes "partial" from the function names
    and uses them in more places.
    
    	* psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
    	(map_partial_symbol_filenames): Ditto.
    	* psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
    	(map_partial_symbol_filenames): Ditto.
    	* symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
    	(map_partial_symbol_filenames): Ditto.
    	* symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
    	(map_partial_symbol_filenames): Ditto.
    	* symtab.c: Delete #include "psymtab.h".

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

Summary of changes:
 gdb/ChangeLog |   12 ++++++++++++
 gdb/psymtab.c |   28 ----------------------------
 gdb/psymtab.h |    6 ------
 gdb/symfile.c |   36 ++++++++++++++++++++++++++++++++++++
 gdb/symfile.h |    6 ++++++
 gdb/symtab.c  |    1 -
 6 files changed, 54 insertions(+), 35 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]