Signed-off-by: liguang <[email protected]>
---
target-s390x/translate.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/target-s390x/translate.c b/target-s390x/translate.c
index 0c3cf68..93ad178 100644
--- a/target-s390x/translate.c
+++ b/target-s390x/translate.c
@@ -4776,9 +4776,8 @@ static inline void
gen_intermediate_code_internal(CPUS390XState *env,
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;
--
1.7.2.5