Hello, In function gen_intermediate_code_internal() of target-i386/translate.c, we have this code:
cpu_T[0] = tcg_temp_new(); cpu_T[1] = tcg_temp_new(); cpu_A0 = tcg_temp_new(); I cannot see anywhere cpu_T & cpu_A0 are freed, so each time this function is called, it allocates new variables without freeing old variables. So we have resource leaking here? Thanks.