[gas/testsuite/ChangeLog]
[deliverable/binutils-gdb.git] / include / opcode / mips.h
index 901c67728e816471f3994f65aa66324af329816a..b7a0fed88ce37cfe51dc279c7210dd2515d06535 100644 (file)
@@ -328,6 +328,8 @@ struct mips_opcode
 #define INSN_3900                 0x00080000
 /* MIPS R10000 instruction.  */
 #define INSN_10000                0x00100000
+/* Broadcom SB-1 instruction.  */
+#define INSN_SB1                  0x00200000
 
 /* MIPS ISA defines, use instead of hardcoding ISA level.  */
 
@@ -378,7 +380,8 @@ struct mips_opcode
         && ((insn)->membership & INSN_4100) != 0)                      \
      || (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0)    \
      || ((cpu == CPU_R10000 || cpu == CPU_R12000)                      \
-        && ((insn)->membership & INSN_10000) != 0))
+        && ((insn)->membership & INSN_10000) != 0)                     \
+     || (cpu == CPU_SB1  && ((insn)->membership & INSN_SB1) != 0))
 
 /* This is a list of macro expanded instructions.
 
This page took 0.023665 seconds and 4 git commands to generate.