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. 5b10184c5844524e59621dd40cefd1db69680f95


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  5b10184c5844524e59621dd40cefd1db69680f95 (commit)
       via  069003265c89fab0c46c5a831c2beeec4bcfb501 (commit)
       via  c2bcbb1d04bb46a130f2c84de05cbbdccc0645fc (commit)
       via  9cbe5fff2b47da85dbc628bdc8c6a85d5344749a (commit)
      from  34a68019ccc3879801a291a00bad5bc10558bf5d (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=5b10184c5844524e59621dd40cefd1db69680f95

commit 5b10184c5844524e59621dd40cefd1db69680f95
Author: Tom Tromey <tromey@redhat.com>
Date:   Fri Dec 27 14:36:35 2013 -0700

    constify error_no_arg
    
    This is a trivial patch to make error_no_arg take a const argument.
    
    2014-06-26  Tom Tromey  <tromey@redhat.com>
    
    	* cli/cli-cmds.c (error_no_arg): Make "why" const.
    	* command.h (error_no_arg): Update.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=069003265c89fab0c46c5a831c2beeec4bcfb501

commit 069003265c89fab0c46c5a831c2beeec4bcfb501
Author: Tom Tromey <tromey@redhat.com>
Date:   Thu Dec 26 22:31:32 2013 -0700

    constify do_set_command and do_show_command
    
    This changes do_set_command and do_show_command to take const
    arguments.
    
    2014-06-26  Tom Tromey  <tromey@redhat.com>
    
    	* cli/cli-setshow.c (do_set_command): Make "arg" const.
    	(do_show_command): Make "arg" const.
    	* cli/cli-setshow.h (do_set_command, do_show_command): Update.

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

commit c2bcbb1d04bb46a130f2c84de05cbbdccc0645fc
Author: Tom Tromey <tromey@redhat.com>
Date:   Mon Apr 15 08:59:03 2013 -0600

    constify get_bookmark and goto_bookmark
    
    This makes arguments to to_get_bookmark and to_goto_bookmark const and
    fixes the fallout.  Tested by rebuilding.  The only thing of note is
    the new split between cmd_record_goto and record_goto -- basically
    separating the CLI function from a new internal API, to allow const
    propagation.
    
    2014-06-26  Tom Tromey  <tromey@redhat.com>
    
    	* record-full.c (record_full_get_bookmark): Make "args" const.
    	(record_full_goto_bookmark): Make "raw_bookmark" const.
    	* record.c (record_goto): New function.
    	(cmd_record_goto): Use it.  Now static.
    	* record.h (record_goto): Declare.
    	(cmd_record_goto): Remove declaration.
    	* target-delegates.c: Rebuild.
    	* target.h (struct target_ops) <to_get_bookmark,
    	to_goto_bookmark>: Make parameter const.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=9cbe5fff2b47da85dbc628bdc8c6a85d5344749a

commit 9cbe5fff2b47da85dbc628bdc8c6a85d5344749a
Author: Tom Tromey <tromey@redhat.com>
Date:   Wed Mar 27 14:14:26 2013 -0600

    constify to_load
    
    This makes the argument to the target_ops to_load method "const", and
    fixes up the fallout.  Tested by rebuilding all the affected files.
    
    2014-06-26  Tom Tromey  <tromey@redhat.com>
    
    	* defs.h (generic_load): Update.
    	* m32r-rom.c (m32r_load_gen): Make "filename" const.
    	* monitor.c (monitor_load): Make "args" const.
    	* remote-m32r-sdi.c (m32r_load): Make "args" const.
    	* remote-mips.c (mips_load_srec, pmon_load_fast): Make "args"
    	const.
    	(mips_load): Make "file" const.
    	* remote-sim.c (gdbsim_load): Make "args" const.
    	* remote.c (remote_load): Make "name" const.
    	* symfile.c (generic_load): Make "args" const.
    	* target-delegates.c: Rebuild.
    	* target.c (target_load): Make "arg" const.
    	(debug_to_load): Make "args" const.
    	* target.h (struct target_ops) <to_load>: Make parameter const.
    	(target_load): Update.

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

Summary of changes:
 gdb/ChangeLog          |   41 +++++++++++++++++++++++++++++++++++++++++
 gdb/cli/cli-cmds.c     |    2 +-
 gdb/cli/cli-setshow.c  |   12 +++++++-----
 gdb/cli/cli-setshow.h  |    4 ++--
 gdb/command.h          |    2 +-
 gdb/defs.h             |    2 +-
 gdb/m32r-rom.c         |    2 +-
 gdb/monitor.c          |    2 +-
 gdb/record-full.c      |   24 ++++++++++++++----------
 gdb/record.c           |   18 +++++++++++++-----
 gdb/record.h           |    4 ++--
 gdb/remote-m32r-sdi.c  |   25 ++++++++-----------------
 gdb/remote-mips.c      |   10 ++++------
 gdb/remote-sim.c       |    5 +++--
 gdb/remote.c           |    2 +-
 gdb/symfile.c          |    2 +-
 gdb/target-delegates.c |   12 ++++++------
 gdb/target.c           |    6 +++---
 gdb/target.h           |    8 ++++----
 19 files changed, 114 insertions(+), 69 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]