2001-10-18 Chris Demetriou <cgd@broadcom.com>
* mips.h (OPCODE_IS_MEMBER): Add a no-op term to the end of the expression, to make source code merging easier.
This commit is contained in:
parent
f57c81f6dd
commit
e4432525bb
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-10-18 Chris Demetriou <cgd@broadcom.com>
|
||||||
|
|
||||||
|
* mips.h (OPCODE_IS_MEMBER): Add a no-op term to the end
|
||||||
|
of the expression, to make source code merging easier.
|
||||||
|
|
||||||
2001-10-17 Chris Demetriou <cgd@broadcom.com>
|
2001-10-17 Chris Demetriou <cgd@broadcom.com>
|
||||||
|
|
||||||
* mips.h: Sort coprocessor instruction argument characters
|
* mips.h: Sort coprocessor instruction argument characters
|
||||||
|
|
|
@ -381,7 +381,8 @@ struct mips_opcode
|
||||||
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \
|
|| (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0) \
|
||||||
|| ((cpu == CPU_R10000 || cpu == CPU_R12000) \
|
|| ((cpu == CPU_R10000 || cpu == CPU_R12000) \
|
||||||
&& ((insn)->membership & INSN_10000) != 0) \
|
&& ((insn)->membership & INSN_10000) != 0) \
|
||||||
|| (cpu == CPU_SB1 && ((insn)->membership & INSN_SB1) != 0))
|
|| (cpu == CPU_SB1 && ((insn)->membership & INSN_SB1) != 0) \
|
||||||
|
|| 0) /* Please keep this term for easier source merging. */
|
||||||
|
|
||||||
/* This is a list of macro expanded instructions.
|
/* This is a list of macro expanded instructions.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue