diff options
author | Fred Fish <fnf@specifix.com> | 2005-01-21 19:43:05 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2005-01-21 19:43:05 +0000 |
commit | 4579a98c43493d7dbb1cbcf0285ff90f8d1c1eed (patch) | |
tree | 6637ae13d2d3ba208073a5a7080f024b67a9e684 /opcodes/mips-dis.c | |
parent | d69e0d1252dee92b7d649c138907311fe3b0c272 (diff) | |
download | gdb-4579a98c43493d7dbb1cbcf0285ff90f8d1c1eed.tar.gz |
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.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index ee50bbb613b..9a4cfb0a1b4 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -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; |