* mips-dis.c (print_insn_args): Add mips_opcode argument.
(print_insn_mips): Adjust print_insn_args call.
This commit is contained in:
parent
0d09bfe6d3
commit
cc0ca239ed
2 changed files with 10 additions and 2 deletions
|
@ -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>
|
2006-04-28 Thiemo Seufer <ths@mips.com>
|
||||||
Nigel Stevens <nigel@mips.com>
|
Nigel Stevens <nigel@mips.com>
|
||||||
|
|
||||||
|
|
|
@ -691,7 +691,8 @@ static void
|
||||||
print_insn_args (const char *d,
|
print_insn_args (const char *d,
|
||||||
register unsigned long int l,
|
register unsigned long int l,
|
||||||
bfd_vma pc,
|
bfd_vma pc,
|
||||||
struct disassemble_info *info)
|
struct disassemble_info *info,
|
||||||
|
const struct mips_opcode *opp)
|
||||||
{
|
{
|
||||||
int op, delta;
|
int op, delta;
|
||||||
unsigned int lsb, msb, msbd;
|
unsigned int lsb, msb, msbd;
|
||||||
|
@ -1252,7 +1253,7 @@ print_insn_mips (bfd_vma memaddr,
|
||||||
if (d != NULL && *d != '\0')
|
if (d != NULL && *d != '\0')
|
||||||
{
|
{
|
||||||
(*info->fprintf_func) (info->stream, "\t");
|
(*info->fprintf_func) (info->stream, "\t");
|
||||||
print_insn_args (d, word, memaddr, info);
|
print_insn_args (d, word, memaddr, info, op);
|
||||||
}
|
}
|
||||||
|
|
||||||
return INSNLEN;
|
return INSNLEN;
|
||||||
|
|
Loading…
Reference in a new issue