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. 3e3286a28ab29052f2169bfce01b3e770d589037


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  3e3286a28ab29052f2169bfce01b3e770d589037 (commit)
      from  3d68f91c0fb05b426e554004cabd3ded4c91f9c8 (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=3e3286a28ab29052f2169bfce01b3e770d589037

commit 3e3286a28ab29052f2169bfce01b3e770d589037
Author: Sergio Durigan Junior <sergiodj@redhat.com>
Date:   Thu Oct 9 13:45:09 2014 -0400

    PR tdep/9390: Fix typo on xstorxstormy16-tdep.c
    
    This patch fixes the bug described in PR tdep/9390, which is about a
    wrong check in the following code:
    
        ...
    
        /* optional copying of args in r2-r7 to r10-r13.  */
        /* Probably only in optimized case but legal action for prologue.  */
        else if ((inst & 0xff00) == 0x4600	/* 46SD   mov rD, rS */
    	     && (inst & 0x00f0) >= 0x0020 && (inst & 0x00f0) <= 0x0070
    	     && (inst & 0x000f) >= 0x00a0 && (inst & 0x000f) <= 0x000d)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^
        ...
    
    This condition will never trigger, and the fix proposed in the bug
    (which made sense to me) was to test against 0x000a.  I tried finding
    documentation about this target, but couldn't find anything.  I don't
    even know if it is still used, but decided to submit the fix anyway.
    
    Tested on my x86_64 Fedora 20 GNU/Linux.
    
    gdb/ChangeLog:
    2014-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
    
    	PR tdep/9390
    	* xstorxstormy16-tdep.c (xstormy16_analyze_prologue): Fix possible
    	typo when using logical AND to determine instruction type.

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

Summary of changes:
 gdb/ChangeLog        |    6 ++++++
 gdb/xstormy16-tdep.c |    2 +-
 2 files changed, 7 insertions(+), 1 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]