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] [ARC] Allow vewt instruction for ARC EM family.


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

commit 47e6f81c7c269ab5ef2b3004bb5ebe0de5cfb969
Author: Claudiu Zissulescu <claziss@gmail.com>
Date:   Mon Jul 23 11:09:43 2018 +0200

    [ARC] Allow vewt instruction for ARC EM family.
    
    opcode/
      Claudiu Zissulescu  <claziss@synopsys.com>
    
    	* arc-tbl.h (vewt): Allow it for ARC EM family.

Diff:
---
 opcodes/ChangeLog | 4 ++++
 opcodes/arc-tbl.h | 7 +++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 9974d2f..9d0de43 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-23  Claudiu Zissulescu <claziss@synopsys.com>
+
+	* arc-tbl.h (vewt): Allow it for ARC EM family.
+
 2018-07-23  Alan Modra  <amodra@gmail.com>
 
 	PR 23419
diff --git a/opcodes/arc-tbl.h b/opcodes/arc-tbl.h
index 8b33340..4e77ee6 100644
--- a/opcodes/arc-tbl.h
+++ b/opcodes/arc-tbl.h
@@ -19806,10 +19806,13 @@
 { "vsubs4h", 0x2E397FBE, 0xFFFFFFFF, ARC_OPCODE_ARCv2HS, ARITH, MPY9E, { ZA, LIMM, LIMMdup }, { 0 }},
 
 /* wevt c 00100000001011110001CCCCCC111111.  */
-{ "wevt", 0x202F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2HS, KERNEL, NONE, { RC }, { 0 }},
+{ "wevt", 0x202F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS, KERNEL, NONE, { RC }, { 0 }},
 
 /* wevt u6 00100000011011110001uuuuuu111111.  */
-{ "wevt", 0x206F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2HS, KERNEL, NONE, { UIMM6_20 }, { 0 }},
+{ "wevt", 0x206F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS, KERNEL, NONE, { UIMM6_20 }, { 0 }},
+
+/* wevt 00100000011011110001uuuuuu111111.  */
+{ "wevt", 0x206F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS, KERNEL, NONE, { 0 }, { 0 }},
 
 /* wlfc c 00100001001011110001CCCCCC111111.  */
 { "wlfc", 0x212F103F, 0xFFFFF03F, ARC_OPCODE_ARCv2HS, KERNEL, NONE, { RC }, { 0 }},


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