Commit 0e1fd3694e5386e791d86fb6bd7ead4d0c86bd9a
1 parent
e0fd8781
target_disas() little endian change
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1642 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-ppc/translate.c
@@ -2643,7 +2643,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb, | @@ -2643,7 +2643,7 @@ int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb, | ||
2643 | } | 2643 | } |
2644 | if (loglevel & CPU_LOG_TB_IN_ASM) { | 2644 | if (loglevel & CPU_LOG_TB_IN_ASM) { |
2645 | fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start)); | 2645 | fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start)); |
2646 | - target_disas(logfile, pc_start, ctx.nip - pc_start, 0); | 2646 | + target_disas(logfile, pc_start, ctx.nip - pc_start, msr_le); |
2647 | fprintf(logfile, "\n"); | 2647 | fprintf(logfile, "\n"); |
2648 | } | 2648 | } |
2649 | if (loglevel & CPU_LOG_TB_OP) { | 2649 | if (loglevel & CPU_LOG_TB_OP) { |