From: Anton Blanchard <an...@samba.org>

Use info->endian to select the endian of the instruction to
be disassembled.

Signed-off-by: Anton Blanchard <an...@samba.org>
Reviewed-by: Anthony Liguori <aligu...@us.ibm.com>
Signed-off-by: Alexander Graf <ag...@suse.de>
---
 disas/ppc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/disas/ppc.c b/disas/ppc.c
index c149506..99c4cbc 100644
--- a/disas/ppc.c
+++ b/disas/ppc.c
@@ -5157,7 +5157,8 @@ int
 print_insn_ppc (bfd_vma memaddr, struct disassemble_info *info)
 {
   int dialect = (char *) info->private_data - (char *) 0;
-  return print_insn_powerpc (memaddr, info, 1, dialect);
+  return print_insn_powerpc (memaddr, info, info->endian == BFD_ENDIAN_BIG,
+                             dialect);
 }
 
 /* Print a big endian PowerPC instruction.  */
-- 
1.8.1.4


Reply via email to