Signed-off-by: liguang <lig.f...@cn.fujitsu.com> --- target-mips/translate.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/target-mips/translate.c b/target-mips/translate.c index b7f8203..7d2baab 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -15595,9 +15595,9 @@ gen_intermediate_code_internal (CPUMIPSState *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; + } } tcg_ctx.gen_opc_pc[lj] = ctx.pc; gen_opc_hflags[lj] = ctx.hflags & MIPS_HFLAG_BMASK; @@ -15678,9 +15678,9 @@ done_generating: *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; tb->icount = num_insns; -- 1.7.2.5