Signed-off-by: liguang <lig.f...@cn.fujitsu.com> --- target-cris/translate.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-)
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; -- 1.7.2.5