This commit is contained in:
Andrea Fioraldi 2020-07-27 10:09:00 +02:00
parent fb9888a068
commit b508532c78

View File

@ -621,7 +621,12 @@ static void afl_wait_tsl(CPUState *cpu, int fd) {
last_tb = tb_htable_lookup(cpu, c.last_tb.pc, c.last_tb.cs_base,
c.last_tb.flags, c.cf_mask);
#define TB_JMP_RESET_OFFSET_INVALID 0xffff
if (last_tb && (last_tb->jmp_reset_offset[c.tb_exit] != TB_JMP_RESET_OFFSET_INVALID)) { tb_add_jump(last_tb, c.tb_exit, tb); }
if (last_tb && (last_tb->jmp_reset_offset[c.tb_exit] !=
TB_JMP_RESET_OFFSET_INVALID)) {
tb_add_jump(last_tb, c.tb_exit, tb);
}
}