* mips-dis.c (print_insn_args): Add mips_opcode argument.
authorThiemo Seufer <ths@networkno.de>
Fri, 28 Apr 2006 12:59:30 +0000 (12:59 +0000)
committerThiemo Seufer <ths@networkno.de>
Fri, 28 Apr 2006 12:59:30 +0000 (12:59 +0000)
(print_insn_mips):  Adjust print_insn_args call.

opcodes/ChangeLog
opcodes/mips-dis.c

index fde7b809779716ad5470c3bc3c2a6c3b1f868952..f9c0619ec36a7fc15cf8f5608b91303e84144f49 100644 (file)
@@ -1,3 +1,10 @@
+2006-04-28  Thiemo Seufer  <ths@mips.com>
+            Nigel Stevens  <nigel@mips.com>
+            David Ung  <davidu@mips.com>
+
+       * mips-dis.c (print_insn_args): Add mips_opcode argument.
+       (print_insn_mips):  Adjust print_insn_args call.
+
 2006-04-28  Thiemo Seufer  <ths@mips.com>
             Nigel Stevens  <nigel@mips.com>
 
index 416be375a5babe89ced9d09b9d2de75fbce2cd98..e8a083b05246fd5bd37e5ed8193ec771b35d460b 100644 (file)
@@ -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;