mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
2005-01-21 Fred Fish <fnf@specifixinc.com>
* mips-opc.c: Change INSN_ALIAS to INSN2_ALIAS. Change INSN_WRITE_MDMX_ACC to INSN2_WRITE_MDMX_ACC. Change INSN_READ_MDMX_ACC to INSN2_READ_MDMX_ACC. * mips-dis.c: Ditto.
This commit is contained in:
@@ -1083,7 +1083,7 @@ print_insn_mips (memaddr, word, info)
|
||||
for (op = mips_opcodes; op < &mips_opcodes[NUMOPCODES]; op++)
|
||||
{
|
||||
if (op->pinfo == INSN_MACRO
|
||||
|| (no_aliases && (op->pinfo2 & INSN_ALIAS)))
|
||||
|| (no_aliases && (op->pinfo2 & INSN2_ALIAS)))
|
||||
continue;
|
||||
if (i == ((op->match >> OP_SH_OP) & OP_MASK_OP))
|
||||
{
|
||||
@@ -1111,7 +1111,7 @@ print_insn_mips (memaddr, word, info)
|
||||
for (; op < &mips_opcodes[NUMOPCODES]; op++)
|
||||
{
|
||||
if (op->pinfo != INSN_MACRO
|
||||
&& !(no_aliases && (op->pinfo2 & INSN_ALIAS))
|
||||
&& !(no_aliases && (op->pinfo2 & INSN2_ALIAS))
|
||||
&& (word & op->mask) == op->match)
|
||||
{
|
||||
register const char *d;
|
||||
@@ -1311,7 +1311,7 @@ print_insn_mips16 (memaddr, info)
|
||||
for (op = mips16_opcodes; op < opend; op++)
|
||||
{
|
||||
if (op->pinfo != INSN_MACRO
|
||||
&& !(no_aliases && (op->pinfo2 & INSN_ALIAS))
|
||||
&& !(no_aliases && (op->pinfo2 & INSN2_ALIAS))
|
||||
&& (insn & op->mask) == op->match)
|
||||
{
|
||||
const char *s;
|
||||
|
||||
Reference in New Issue
Block a user