diff mbox

[update,09/16] target-moxie/translate: minimally change gen_intermediate_code_internal

Message ID 1365661963-15396-9-git-send-email-lig.fnst@cn.fujitsu.com
State New
Headers show

Commit Message

liguang April 11, 2013, 6:32 a.m. UTC
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
---
 target-moxie/translate.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)
diff mbox

Patch

diff --git a/target-moxie/translate.c b/target-moxie/translate.c
index cc02bd3..992e44d 100644
--- a/target-moxie/translate.c
+++ b/target-moxie/translate.c
@@ -856,9 +856,8 @@  gen_intermediate_code_internal(MoxieCPU *cpu, TranslationBlock *tb,
         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;
@@ -900,9 +899,8 @@  gen_intermediate_code_internal(MoxieCPU *cpu, TranslationBlock *tb,
     *tcg_ctx.gen_opc_ptr = INDEX_op_end;
     if (search_pc) {
         j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
-        lj++;
-        while (lj <= j) {
-            tcg_ctx.gen_opc_instr_start[lj++] = 0;
+        while (++lj <= j) {
+            tcg_ctx.gen_opc_instr_start[lj] = 0;
         }
     } else {
         tb->size = ctx.pc - pc_start;