2005-05-07 H.J. Lu <hongjiu.lu@intel.com>
* d10v-dis.c (dis_2_short): Support 64bit host.
This commit is contained in:
parent
7f4d39589c
commit
920a34a7b2
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-05-07 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* d10v-dis.c (dis_2_short): Support 64bit host.
|
||||
|
||||
2005-05-07 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* po/nl.po: Updated translation.
|
||||
|
|
|
@ -253,7 +253,8 @@ dis_2_short (insn, memaddr, info, order)
|
|||
while (op->name)
|
||||
{
|
||||
if ((op->format & SHORT_OPCODE)
|
||||
&& ((op->mask & ins[j]) == (unsigned long) op->opcode))
|
||||
&& ((((unsigned int) op->mask) & ins[j])
|
||||
== (unsigned int) op->opcode))
|
||||
{
|
||||
(*info->fprintf_func) (info->stream, "%s\t", op->name);
|
||||
for (i = 0; op->operands[i]; i++)
|
||||
|
|
Loading…
Reference in a new issue