From: Thiemo Seufer Date: Fri, 28 Apr 2006 12:59:30 +0000 (+0000) Subject: * mips-dis.c (print_insn_args): Add mips_opcode argument. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc0ca239ed9261e5a45680c89ab3dd5cbd455f90;p=binutils-gdb.git * mips-dis.c (print_insn_args): Add mips_opcode argument. (print_insn_mips): Adjust print_insn_args call. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index fde7b809779..f9c0619ec36 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2006-04-28 Thiemo Seufer + Nigel Stevens + David Ung + + * mips-dis.c (print_insn_args): Add mips_opcode argument. + (print_insn_mips): Adjust print_insn_args call. + 2006-04-28 Thiemo Seufer Nigel Stevens diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 416be375a5b..e8a083b0524 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -691,7 +691,8 @@ static void print_insn_args (const char *d, register unsigned long int l, bfd_vma pc, - struct disassemble_info *info) + struct disassemble_info *info, + const struct mips_opcode *opp) { int op, delta; unsigned int lsb, msb, msbd; @@ -1252,7 +1253,7 @@ print_insn_mips (bfd_vma memaddr, if (d != NULL && *d != '\0') { (*info->fprintf_func) (info->stream, "\t"); - print_insn_args (d, word, memaddr, info); + print_insn_args (d, word, memaddr, info, op); } return INSNLEN;