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. 08be3fe322244a3684d007d9282e225fc215f5d8


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  08be3fe322244a3684d007d9282e225fc215f5d8 (commit)
      from  4347085ad3e84bdc1f91e7121cedf3e79a9467fb (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=08be3fe322244a3684d007d9282e225fc215f5d8

commit 08be3fe322244a3684d007d9282e225fc215f5d8
Author: Doug Evans <xdje42@gmail.com>
Date:   Tue Dec 23 07:21:10 2014 -0800

    Replace some symbol accessor macros with functions.
    
    gdb/ChangeLog:
    
    	* symtab.h (SYMBOL_SYMTAB): Delete
    	(SYMBOL_OBJFILE): Delete.
    	(symbol_symtab, symbol_set_symtab): Declare.
    	(symbol_objfile, symbol_arch): Declare.
    	* symtab.c (symbol_symtab): Replaces SYMBOL_SYMTAB.  All uses updated.
    	All references to symbol->symtab redirected through here.
    	(symbol_set_symtab): New function.  All assignments to SYMBOL_SYMTAB
    	redirected through here.
    	(symbol_arch): New function.
    	(symbol_objfile): New function.  Replaces SYMBOL_OBJFILE.
    	All uses updated.
    	* cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
    	symbol_arch.
    	* findvar.c (default_read_var_value): Call symbol_arch.
    	* guile/scm-frame.c (gdbscm_frame_block): Call symbol_objfile.
    	* jv-lang.c (add_class_symtab_symbol): Call symbol_arch.
    	* printcmd.c (address_info): Call symbol_arch.
    	* tracepoint.c (scope_info): Call symbol_arch.

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

Summary of changes:
 gdb/ChangeLog                   |   21 ++++++++++++
 gdb/ada-lang.c                  |    6 ++--
 gdb/btrace.c                    |    8 ++--
 gdb/buildsym.c                  |   12 +++---
 gdb/compile/compile-c-symbols.c |    2 +-
 gdb/cp-namespace.c              |    3 +-
 gdb/dwarf2read.c                |    7 ++--
 gdb/findvar.c                   |   12 +++---
 gdb/frame.c                     |    2 +-
 gdb/guile/scm-frame.c           |    7 +---
 gdb/guile/scm-symbol.c          |    4 +-
 gdb/infcmd.c                    |    2 +-
 gdb/jit.c                       |    2 +-
 gdb/jv-lang.c                   |    3 +-
 gdb/linespec.c                  |   24 +++++++-------
 gdb/mdebugread.c                |    2 +-
 gdb/parse.c                     |    2 +-
 gdb/printcmd.c                  |    4 +-
 gdb/python/py-frame.c           |    6 +--
 gdb/python/py-symbol.c          |   16 +++++-----
 gdb/record-btrace.c             |    2 +-
 gdb/symmisc.c                   |    2 +-
 gdb/symtab.c                    |   66 +++++++++++++++++++++++++++++---------
 gdb/symtab.h                    |   24 +++++++++++++-
 gdb/tracepoint.c                |    2 +-
 gdb/valops.c                    |    2 +-
 26 files changed, 156 insertions(+), 87 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]