summaryrefslogtreecommitdiff
path: root/opcodes/bfin-dis.c
diff options
context:
space:
mode:
authorJie Zhang <jie.zhang@analog.com>2005-10-18 16:39:41 +0000
committerJie Zhang <jie.zhang@analog.com>2005-10-18 16:39:41 +0000
commitbbfaf54c24e1edbfe8dfa97569cafd90a8e3d77e (patch)
tree7425e760dcde75f971261a5174ab14907fa085ef /opcodes/bfin-dis.c
parent698c38b37866acf9325c73a3309542383f831fdc (diff)
downloadbinutils-redhat-bbfaf54c24e1edbfe8dfa97569cafd90a8e3d77e.tar.gz
* bfin-dis.c (print_insn_bfin): Do proper endian transform when
reading instruction from memory.
Diffstat (limited to 'opcodes/bfin-dis.c')
-rw-r--r--opcodes/bfin-dis.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/opcodes/bfin-dis.c b/opcodes/bfin-dis.c
index 2714e90947..08f9d23c5b 100644
--- a/opcodes/bfin-dis.c
+++ b/opcodes/bfin-dis.c
@@ -5765,13 +5765,18 @@ illegal_instruction:
int
print_insn_bfin (bfd_vma pc, disassemble_info *outf)
{
- short iw0 = 0;
- int status = 0;
+ bfd_byte buf[2];
+ unsigned short iw0;
+ int status;
int count = 0;
- status = (*outf->read_memory_func) (pc & ~0x01, (bfd_byte *) & iw0, 2, outf);
+
+ status = (*outf->read_memory_func) (pc & ~0x01, buf, 2, outf);
+ iw0 = bfd_getl16 (buf);
count += _print_insn_bfin (pc, outf);
+
/* Proper display of multiple issue instructions. */
+
if ((iw0 & 0xc000) == 0xc000 && (iw0 & BIT_MULTI_INS)
&& ((iw0 & 0xe800) != 0xe800 /* not Linkage */ ))
{