Signed-off-by: liguang <lig.f...@cn.fujitsu.com> --- target-xtensa/translate.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/target-xtensa/translate.c b/target-xtensa/translate.c index 06d68db..dbceeb8 100644 --- a/target-xtensa/translate.c +++ b/target-xtensa/translate.c @@ -2927,9 +2927,8 @@ static void gen_intermediate_code_internal( 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; @@ -2997,7 +2996,7 @@ static void gen_intermediate_code_internal( if (search_pc) { j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf; memset(tcg_ctx.gen_opc_instr_start + lj + 1, 0, - (j - lj) * sizeof(tcg_ctx.gen_opc_instr_start[0])); + (j - lj) * sizeof(tcg_ctx.gen_opc_instr_start[0])); } else { tb->size = dc.pc - pc_start; tb->icount = insn_count; -- 1.7.2.5