summaryrefslogtreecommitdiffstats
path: root/include/opcode/mips.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2004-12-09 06:13:44 +0000
committerIan Lance Taylor <iant@google.com>2004-12-09 06:13:44 +0000
commit23b9802aa05df57f58239b6876c65bcf6785e23f (patch)
tree7968fc0a0ae03e631c68ce30998c731c5f23a103 /include/opcode/mips.h
parent55059a1f7dad2eb1030387b22e244254c95172de (diff)
downloadcygnal-23b9802aa05df57f58239b6876c65bcf6785e23f.tar.gz
cygnal-23b9802aa05df57f58239b6876c65bcf6785e23f.tar.bz2
cygnal-23b9802aa05df57f58239b6876c65bcf6785e23f.zip
* mips.h (CPU_RM9000): Define.
(OPCODE_IS_MEMBER): Handle CPU_RM9000.
Diffstat (limited to 'include/opcode/mips.h')
-rw-r--r--include/opcode/mips.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/opcode/mips.h b/include/opcode/mips.h
index 5c3ddfcd7..8d7283e56 100644
--- a/include/opcode/mips.h
+++ b/include/opcode/mips.h
@@ -470,6 +470,7 @@ struct mips_opcode
#define CPU_R6000 6000
#define CPU_RM7000 7000
#define CPU_R8000 8000
+#define CPU_RM9000 9000
#define CPU_R10000 10000
#define CPU_R12000 12000
#define CPU_MIPS16 16
@@ -489,6 +490,7 @@ struct mips_opcode
(((insn)->membership & isa) != 0 \
|| (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0) \
|| (cpu == CPU_RM7000 && ((insn)->membership & INSN_4650) != 0) \
+ || (cpu == CPU_RM9000 && ((insn)->membership & INSN_4650) != 0) \
|| (cpu == CPU_R4010 && ((insn)->membership & INSN_4010) != 0) \
|| (cpu == CPU_VR4100 && ((insn)->membership & INSN_4100) != 0) \
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \