diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2016-03-31 19:51:14 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2016-04-19 22:50:33 +0100 |
commit | c8f785f220bab3c17fc93445ac509495d00d5afe (patch) | |
tree | 4b845f17e4171fcffd0fb568df639a56f397011f /include | |
parent | ee2915c993e333c2a1c26499da1a918516d2f1cc (diff) | |
download | binutils-gdb-c8f785f220bab3c17fc93445ac509495d00d5afe.tar.gz |
opcodes/arc: Add more nps instructions
Add dctcp, dcip, dcet, and dcacl instructions.
gas/ChangeLog:
* testsuite/gas/arc/nps400-4.d: New file.
* testsuite/gas/arc/nps400-4.s: New file.
* testsuite/gas/arc/nps400-5.d: New file.
* testsuite/gas/arc/nps400-5.s: New file.
include/ChangeLog:
* opcode/arc.h (insn_class_t): Add NET and ACL class.
opcodes/ChangeLog:
* arc-nps400-tbl.h: Add dctcp, dcip, dcet, and dcacl instructions.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/arc.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 8c16d79f06f..9bd4a72a7d8 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2016-04-19 Andrew Burgess <andrew.burgess@embecosm.com> + + * opcode/arc.h (insn_class_t): Add NET and ACL class. + 2016-04-14 Andrew Burgess <andrew.burgess@embecosm.com> * elf/arc-reloc.def: Add ARC_NPS_CMEM16 reloc. diff --git a/include/opcode/arc.h b/include/opcode/arc.h index 28118776fe9..31daeb7a9a1 100644 --- a/include/opcode/arc.h +++ b/include/opcode/arc.h @@ -47,6 +47,8 @@ typedef enum LOGICAL, MEMORY, BITOP, + NET, + ACL, } insn_class_t; /* Instruction Subclass. */ |