diff mbox

[update,06/16] target-cris/translate: minimally change gen_intermediate_code_internal

Message ID 1365661963-15396-6-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-cris/translate.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)
diff mbox

Patch

diff --git a/target-cris/translate.c b/target-cris/translate.c
index dbcb811..6f38f1b 100644
--- a/target-cris/translate.c
+++ b/target-cris/translate.c
@@ -3258,9 +3258,8 @@  gen_intermediate_code_internal(CPUCRISState *env, 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;
                 }
             }
             if (dc->delayed_branch == 1) {
@@ -3396,9 +3395,8 @@  gen_intermediate_code_internal(CPUCRISState *env, 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 = dc->pc - pc_start;