Signed-off-by: liguang <lig.f...@cn.fujitsu.com> --- target-ppc/translate.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 5e741d1..829f30a 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -9565,9 +9565,9 @@ static inline void gen_intermediate_code_internal(CPUPPCState *env, if (unlikely(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.nip; tcg_ctx.gen_opc_instr_start[lj] = 1; @@ -9666,9 +9666,9 @@ static inline void gen_intermediate_code_internal(CPUPPCState *env, *tcg_ctx.gen_opc_ptr = INDEX_op_end; if (unlikely(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.nip - pc_start; tb->icount = num_insns; -- 1.7.2.5