diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2001-08-10 16:22:08 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2001-08-10 16:22:08 +0000 |
commit | d98bb281e84ba33e1e19f67319f01e19c9c9c8e3 (patch) | |
tree | becda1116986bd153e9194c62e584392d2262dee /opcodes/mips-dis.c | |
parent | a58ec95a7edf6346fcf46acc0f66d368ab64d34e (diff) | |
download | gdb-d98bb281e84ba33e1e19f67319f01e19c9c9c8e3.zip gdb-d98bb281e84ba33e1e19f67319f01e19c9c9c8e3.tar.gz gdb-d98bb281e84ba33e1e19f67319f01e19c9c9c8e3.tar.bz2 |
* 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-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 97f263d..eb18ff8 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -469,7 +469,7 @@ print_insn_mips (memaddr, word, info) { register const char *d; - if (! OPCODE_IS_MEMBER (op, mips_isa, target_processor, 0)) + if (! OPCODE_IS_MEMBER (op, mips_isa, target_processor)) continue; (*info->fprintf_func) (info->stream, "%s", op->name); |