Signed-off-by: liguang <lig.f...@cn.fujitsu.com> --- target-sparc/translate.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/target-sparc/translate.c b/target-sparc/translate.c index eb6e800..f3036ff 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -5267,9 +5267,9 @@ static inline void gen_intermediate_code_internal(TranslationBlock * tb, qemu_log("Search PC...\n"); 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; gen_opc_npc[lj] = dc->npc; tcg_ctx.gen_opc_instr_start[lj] = 1; @@ -5323,9 +5323,9 @@ static inline void gen_intermediate_code_internal(TranslationBlock * tb, *tcg_ctx.gen_opc_ptr = INDEX_op_end; if (spc) { 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; + } #if 0 log_page_dump(); #endif -- 1.7.2.5