This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils 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]

[binutils-gdb] Fix match and mask for 64-bit bb opcode.


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

commit cd85e51ad3921eabd7030974ce375123a0848cce
Author: John David Anglin <danglin@gcc.gnu.org>
Date:   Sun May 14 16:06:06 2017 -0400

    Fix match and mask for 64-bit bb opcode.

Diff:
---
 include/ChangeLog     | 4 ++++
 include/opcode/hppa.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/ChangeLog b/include/ChangeLog
index 5ee7cba..5641957 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-14  John David Anglin  <danglin@gcc.gnu.org>
+
+	* opcode/hppa.h: Fix match and mask for 64-bit bb opcode.
+
 2017-05-10  Claudiu Zissulescu  <claziss@synopsys.com>
 
 	* elf/arc.h (SHT_ARC_ATTRIBUTES): Define.
diff --git a/include/opcode/hppa.h b/include/opcode/hppa.h
index 21b1cca..ddb8bec 100644
--- a/include/opcode/hppa.h
+++ b/include/opcode/hppa.h
@@ -594,7 +594,7 @@ static const struct pa_opcode pa_opcodes[] =
 { "addibf",	0xac000000, 0xfc000000, "?dn5,b,w", pa10, 0},
 { "bb",		0xc0006000, 0xffe06000, "?Bnx,!,w", pa20, FLAG_STRICT}, 
 { "bb",		0xc0004000, 0xffe06000, "?bnx,!,w", pa10, FLAG_STRICT}, 
-{ "bb",		0xc4004000, 0xfc004000, "?Bnx,B,w", pa20, FLAG_STRICT}, 
+{ "bb",		0xc4006000, 0xfc006000, "?Bnx,B,w", pa20, FLAG_STRICT}, 
 { "bb",		0xc4004000, 0xfc006000, "?bnx,Q,w", pa10, FLAG_STRICT}, 
 { "bb",		0xc4004000, 0xfc006000, "?bnx,Q,w", pa10, 0}, 
 { "bvb",	0xc0004000, 0xffe04000, "?bnx,w", pa10, 0},


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]