qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] PPC64 target: Fix typo in gen_qemu_ld32s


From: Alexander Graf
Subject: [Qemu-devel] [PATCH] PPC64 target: Fix typo in gen_qemu_ld32s
Date: Fri, 27 Feb 2009 23:12:36 +0100

When the CPU is in little endian mode, it should load values from RAM
in byte swapped manner. This check is in all the ld and st functions,
but misspelled in gen_qemu_ld32s.

This patch fixes the misspelling and makes ppc64 Linux happier.

Signed-off-by: Alexander Graf <address@hidden>
---
 target-ppc/translate.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/target-ppc/translate.c b/target-ppc/translate.c
index f01a1cf..2a06e4c 100644
--- a/target-ppc/translate.c
+++ b/target-ppc/translate.c
@@ -2624,7 +2624,7 @@ static always_inline void gen_qemu_ld32u(DisasContext 
*ctx, TCGv arg1, TCGv arg2
 #if defined(TARGET_PPC64)
 static always_inline void gen_qemu_ld32s(DisasContext *ctx, TCGv arg1, TCGv 
arg2)
 {
-    if (unlikely(ctx->mem_idx)) {
+    if (unlikely(ctx->le_mode)) {
         TCGv_i32 t0;
         tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
         t0 = tcg_temp_new_i32();
-- 
1.6.0.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]