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. 433e77fad1fda55408db072de18dcd4f9116289e


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  433e77fad1fda55408db072de18dcd4f9116289e (commit)
      from  7b667436a52c584267cc78d1fbc05c84856192ee (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=433e77fad1fda55408db072de18dcd4f9116289e

commit 433e77fad1fda55408db072de18dcd4f9116289e
Author: Hui Zhu <teawater@gmail.com>
Date:   Sun Apr 27 22:23:43 2014 +0800

    Make "set disassemble-next-line on" can work with DUMMY_FRAME, SIGTRAMP_FRAME and ARCH_FRAME
    
    When GDB debug DUMMY_FRAME, SIGTRAMP_FRAME and ARCH_FRAME, even if
    "set disassemble-next-line on", it will not output the asm code:
    (gdb) set disassemble-next-line on
    (gdb) si
    <signal handler called>
    (gdb)
    <signal handler called>
    (gdb)
    <signal handler called>
    
    So make this patch make they can work together, it will become:
    (gdb) si
    <signal handler called>
    => 0xffffffff816bfb09 <int_with_check+0>:	65 48 8b 0c 25 c8 c7 00 00	mov    %gs:0xc7c8,%rcx
    (gdb)
    <signal handler called>
    => 0xffffffff816bfb12 <int_with_check+9>:	48 81 e9 d8 1f 00 00	sub    $0x1fd8,%rcx
    (gdb)
    <signal handler called>
    => 0xffffffff816bfb19 <int_with_check+16>:	8b 51 10	mov    0x10(%rcx),%edx
    
    2014-04-27  Hui Zhu  <hui@codesourcery.com>
    
    	* stack.c (print_frame_info): Call do_gdb_disassembly with
    	DUMMY_FRAME, SIGTRAMP_FRAME and ARCH_FRAME.

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

Summary of changes:
 gdb/ChangeLog |    5 +++++
 gdb/stack.c   |    7 +++++++
 2 files changed, 12 insertions(+), 0 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]