On 2/11/21 2:21 AM, Philippe Mathieu-Daudé wrote: >> - insns_left = MIN(0xffff, cpu->icount_budget); >> + insns_left = MIN(CF_COUNT_MASK, cpu->icount_budget); > > Can you describe this change a bit please?
Replacing a magic number with its proper symbol. r~