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. 6bd273ae450b2ba626b0f7dbda10947e69578e1d


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  6bd273ae450b2ba626b0f7dbda10947e69578e1d (commit)
       via  f6c01fc5156fde67bd62b1d66dee769dd88bf51e (commit)
      from  b35d44f1af711925bfa4344ef00470fee67122f1 (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=6bd273ae450b2ba626b0f7dbda10947e69578e1d

commit 6bd273ae450b2ba626b0f7dbda10947e69578e1d
Author: Pedro Alves <palves@redhat.com>
Date:   Wed Nov 27 17:49:59 2013 +0000

    Make "set debug frame 1" output print <not saved> instead of <optimized out>.
    
    "set debug frame 1" is printing "<optimized out>" for not saved
    registers.  That's because the unwinders are returning optimized out
    not_lval values instead of optimized out lval_register values.  "<not
    saved>" is how val_print_optimized_out prints lval_register values.
    
      ...
      - { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> <optimized out> }
      + { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> <not saved> }
      ...
    
    Tested on x86_64 Fedora 17.
    
    2013-11-27  Pedro Alves  <palves@redhat.com>
    
    	* frame-unwind.c (frame_unwind_got_optimized): Return
    	an lval_register value instead of a not_lval value.

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

commit f6c01fc5156fde67bd62b1d66dee769dd88bf51e
Author: Andrew Burgess <aburgess@broadcom.com>
Date:   Wed Nov 27 17:49:59 2013 +0000

    Make "set debug frame 1" use the standard print routine for optimized out values.
    
     ...
     - { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> optimized out }
     + { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> <optimized out> }
     ...
    
    Tested on x86_64 Fedora 17.
    
    2013-11-27  Andrew Burgess  <aburgess@broadcom.com>
    
    	* frame.c: Include "valprint.h".
    	(frame_unwind_register_value): Use value_optimized_out.
    	* value.c (value_fetch_lazy): Likewise.

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

Summary of changes:
 gdb/ChangeLog      |   11 +++++++++++
 gdb/frame-unwind.c |    8 +++++---
 gdb/frame.c        |    6 +++++-
 gdb/value.c        |    5 ++++-
 4 files changed, 25 insertions(+), 5 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]