diff mbox

[update,15/16] target-unicore32/translate: minimally change gen_intermediate_code_internal

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

Patch

diff --git a/target-unicore32/translate.c b/target-unicore32/translate.c
index 151e35e..60701bd 100644
--- a/target-unicore32/translate.c
+++ b/target-unicore32/translate.c
@@ -1940,9 +1940,8 @@  static inline void gen_intermediate_code_internal(CPUUniCore32State *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] = dc->pc;
@@ -2054,9 +2053,8 @@  done_generating:
 #endif
     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;