Signed-off-by: liguang <lig.f...@cn.fujitsu.com>
---
 target-alpha/translate.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/target-alpha/translate.c b/target-alpha/translate.c
index 4db16db..4b4320a 100644
--- a/target-alpha/translate.c
+++ b/target-alpha/translate.c
@@ -3425,9 +3425,9 @@ static inline void 
gen_intermediate_code_internal(CPUAlphaState *env,
         if (search_pc) {
             j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
             if (lj < j) {
-                lj++;
-                while (lj < j)
-                    tcg_ctx.gen_opc_instr_start[lj++] = 0;
+                while (++lj < j) {
+                    tcg_ctx.gen_opc_instr_start[lj] = 0;
+                }
             }
             tcg_ctx.gen_opc_pc[lj] = ctx.pc;
             tcg_ctx.gen_opc_instr_start[lj] = 1;
-- 
1.7.2.5


Reply via email to