Signed-off-by: liguang <[email protected]>
---
target-openrisc/translate.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/target-openrisc/translate.c b/target-openrisc/translate.c
index 0eafd02..dab0aa2 100644
--- a/target-openrisc/translate.c
+++ b/target-openrisc/translate.c
@@ -1703,9 +1703,8 @@ static inline void
gen_intermediate_code_internal(OpenRISCCPU *cpu,
if (search_pc) {
j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
if (k < j) {
- k++;
- while (k < j) {
- tcg_ctx.gen_opc_instr_start[k++] = 0;
+ while (++k < j) {
+ tcg_ctx.gen_opc_instr_start[k] = 0;
}
}
tcg_ctx.gen_opc_pc[k] = dc->pc;
--
1.7.2.5