Patch from Kenneth Chen to fix brl disassembly.

* ia64-dis.c (print_insn_ia64): Correct handling of IA64_OPND_TGT64.
This commit is contained in:
Jim Wilson 2002-11-25 19:59:29 +00:00
parent f1c8a9492e
commit 97dd3f1856
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-11-25 Jim Wilson <wilson@redhat.com>
* ia64-dis.c (print_insn_ia64): Correct handling of IA64_OPND_TGT64.
2002-11-15 DJ Delorie <dj@redhat.com> 2002-11-15 DJ Delorie <dj@redhat.com>
* xstormy16-desc.c: Regenerate. * xstormy16-desc.c: Regenerate.

View File

@ -167,10 +167,10 @@ print_insn_ia64 (bfd_vma memaddr, struct disassemble_info *info)
} }
else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64) else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
{ {
/* 60-bit immedate for long branches. */ /* 60-bit immediate for long branches. */
value = (((insn >> 13) & 0xfffff) value = (((insn >> 13) & 0xfffff)
| (((insn >> 36) & 1) << 59) | (((insn >> 36) & 1) << 59)
| (slot[1] << 20)) << 4; | (((slot[1] >> 2) & 0x7fffffffffLL) << 20)) << 4;
} }
else else
{ {