diff options
author | Richard Sandiford <rsandifo@nildram.co.uk> | 2001-08-10 16:22:08 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@nildram.co.uk> | 2001-08-10 16:22:08 +0000 |
commit | 3eade0c7abb08b2d45191c464d0bb224aa4b5f91 (patch) | |
tree | 5ea045dee0a98463c0e4afaab08734a3df05516d /opcodes/mips-opc.c | |
parent | d1ccd0439854a86e871e4cf9fb353f3caeb94473 (diff) | |
download | gdb-3eade0c7abb08b2d45191c464d0bb224aa4b5f91.tar.gz |
* mips-dis.c (print_insn_mips): Remove OPCODE_IS_MEMBER's gp32
argument.
* mips-opc.c (G6): Undefine.
(mips_builtin_opcodes): Remove gp32 entry for "move". Add macro
as the first "move" alternative.
Diffstat (limited to 'opcodes/mips-opc.c')
-rw-r--r-- | opcodes/mips-opc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 3028b99e0f9..ba4038bb8cf 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -96,8 +96,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * #define G3 (I4 \ ) -#define G6 INSN_GP32 - /* The order of overloaded instructions matters. Label arguments and register arguments look the same. Instructions that can have either for arguments must apear in the correct order in this table for the @@ -121,7 +119,7 @@ const struct mips_opcode mips_builtin_opcodes[] = {"li", "t,j", 0x24000000, 0xffe00000, WR_t, I1 }, /* addiu */ {"li", "t,i", 0x34000000, 0xffe00000, WR_t, I1 }, /* ori */ {"li", "t,I", 0, (int) M_LI, INSN_MACRO, I1 }, -{"move", "d,s", 0x00000025, 0xfc1f07ff, WR_d|RD_s, I1|G6 },/* or */ +{"move", "d,s", 0, (int) M_MOVE, INSN_MACRO, I1 }, {"move", "d,s", 0x0000002d, 0xfc1f07ff, WR_d|RD_s, I3 },/* daddu */ {"move", "d,s", 0x00000021, 0xfc1f07ff, WR_d|RD_s, I1 },/* addu */ {"move", "d,s", 0x00000025, 0xfc1f07ff, WR_d|RD_s, I1 },/* or */ |