diff options
author | Alan Modra <amodra@gmail.com> | 2005-10-31 06:10:33 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-10-31 06:10:33 +0000 |
commit | 9a2ff3f50c15b249f724b8ef6ae3d035567ab854 (patch) | |
tree | ddc9e557f1a5ea031bd05084ba9bf20536c0bbc8 /opcodes | |
parent | 6f72d99d8bc82bb411ff143434f8edaff9dc541b (diff) | |
download | ppe42-binutils-9a2ff3f50c15b249f724b8ef6ae3d035567ab854.tar.gz ppe42-binutils-9a2ff3f50c15b249f724b8ef6ae3d035567ab854.zip |
* arm-dis.c (print_insn): Warning fix.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/arm-dis.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a44ae18f80..5bf79149af 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2005-10-31 Alan Modra <amodra@bigpond.net.au> + + * arm-dis.c (print_insn): Warning fix. + 2005-10-30 H.J. Lu <hongjiu.lu@intel.com> * Makefile.am: Run "make dep-am". diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index 236a1c9e3a..a19c077c06 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -2854,13 +2854,13 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little) size = 2; status = info->read_memory_func (pc, (bfd_byte *)b, 2, info); + if (little) + given = (b[0]) | (b[1] << 8); + else + given = (b[1]) | (b[0] << 8); + if (!status) { - if (little) - given = (b[0]) | (b[1] << 8); - else - given = (b[1]) | (b[0] << 8); - /* These bit patterns signal a four-byte Thumb instruction. */ if ((given & 0xF800) == 0xF800 |