qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 06/25] Fix temp free for hw_st


From: Tristan Gingold
Subject: [Qemu-devel] [PATCH 06/25] Fix temp free for hw_st
Date: Tue, 24 Mar 2009 16:47:48 +0100

No need to stop translation after hw_st.

Signed-off-by: Tristan Gingold <address@hidden>
---
 target-alpha/translate.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/target-alpha/translate.c b/target-alpha/translate.c
index 5fe037f..811b073 100644
--- a/target-alpha/translate.c
+++ b/target-alpha/translate.c
@@ -2186,11 +2186,10 @@ static always_inline int translate_one (DisasContext 
*ctx, uint32_t insn)
                 /* Invalid */
                 goto invalid_opc;
             }
-            if (ra != 31)
+            if (ra == 31)
                 tcg_temp_free(val);
             tcg_temp_free(addr);
         }
-        ret = 2;
         break;
 #endif
     case 0x20:
-- 
1.6.2





reply via email to

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