qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [6654] Fix typo in gen_qemu_ld32s


From: Blue Swirl
Subject: [Qemu-devel] [6654] Fix typo in gen_qemu_ld32s
Date: Sat, 28 Feb 2009 08:25:30 +0000

Revision: 6654
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6654
Author:   blueswir1
Date:     2009-02-28 08:25:29 +0000 (Sat, 28 Feb 2009)
Log Message:
-----------
Fix typo in gen_qemu_ld32s

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>

Modified Paths:
--------------
    trunk/target-ppc/translate.c

Modified: trunk/target-ppc/translate.c
===================================================================
--- trunk/target-ppc/translate.c        2009-02-27 22:16:47 UTC (rev 6653)
+++ trunk/target-ppc/translate.c        2009-02-28 08:25:29 UTC (rev 6654)
@@ -2624,7 +2624,7 @@
 #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();





reply via email to

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