Signed-off-by: liguang <[email protected]>
---
target-cris/translate.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/target-cris/translate.c b/target-cris/translate.c
index dbcb811..a1016be 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) {
--
1.7.2.5